:root {
  --ink: #2f2540;
  --paper: #f4f1e8;
  --white: #fffdfa;
  --green: #72a87b;
  --yellow: #f5cf7c;
  --orange: #ef9d62;
  --sky: #77b7c5;
  --violet: #6d5a87;
  --muted: #716778;
  --line: #d9d1c4;
  --shadow: 0 18px 50px rgba(47,37,64,.10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

main {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

p,
h1,
h2,
h3,
h4,
li {
  overflow-wrap: anywhere;
}

code,
pre {
  white-space: pre-wrap;
  word-break: break-word;
}

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

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 20px;
  top: 20px;
  z-index: 1000;
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,241,232,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47,37,64,.08);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 196px;
}

.nav {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav a {
  padding: 9px 9px;
  border-radius: 12px;
  font-weight: 780;
  font-size: .89rem;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  background: #fff;
}

.nav .nav-sitemap {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding-inline: 12px;
}

.nav .nav-sitemap:hover,
.nav .nav-sitemap:focus-visible {
  background: var(--violet);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 13px;
  padding: 10px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .2s;
}

.hero {
  padding: 76px 0 48px;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .26;
  right: -140px;
  top: -110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr);
  gap: 56px;
  align-items: center;
  position: relative;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  font-family: Georgia,"Times New Roman",serif;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 18px 0 22px;
}

.hero h1 {
  font-size: 46px;
  max-width: 820px;
}

.hero-copy>p {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 700px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 16px;
  font-weight: 850;
  border: 1px solid var(--ink);
  transition: .2s transform,.2s box-shadow;
  text-align: center;
}

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

.button:focus-visible,
.nav a:focus-visible,
.toc a:focus-visible,
.faq-item button:focus-visible,
.menu-btn:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.button.dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--yellow);
}

.button.ghost {
  background: transparent;
}

.button.light {
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(255,255,255,.22);
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.fact-row span {
  font-size: .86rem;
  font-weight: 780;
  padding: 8px 12px;
  background: rgba(255,255,255,.65);
  border-radius: 999px;
}

.field-card {
  background: var(--ink);
  color: #fff;
  border-radius: 34px;
  padding: 24px;
  box-shadow: 15px 15px 0 var(--green),var(--shadow);
  transform: rotate(1deg);
}

.field-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .75rem;
  letter-spacing: .1em;
}

.field-orbit {
  height: 330px;
  position: relative;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-a {
  width: min(250px,72%);
  aspect-ratio: 1;
  border: 2px dashed rgba(255,255,255,.24);
}

.orb-b {
  width: min(180px,52%);
  aspect-ratio: 1;
  background: var(--yellow);
  opacity: .9;
}

.pixel-mark {
  width: 148px;
  height: 148px;
  position: relative;
  z-index: 2;
}

.pixel-mark span,
.pixel-mark i,
.pixel-mark b,
.pixel-mark em {
  position: absolute;
  display: block;
}

.pixel-mark span {
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 58px;
  background: var(--orange);
}

.pixel-mark i {
  left: 42px;
  right: 42px;
  top: 34px;
  height: 52px;
  background: var(--yellow);
}

.pixel-mark b {
  width: 46px;
  height: 28px;
  background: var(--green);
  left: 55px;
  top: 9px;
}

.pixel-mark em {
  width: 28px;
  height: 28px;
  background: var(--green);
  right: 5px;
  top: 0;
}

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

.field-notes div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px;
  border-radius: 16px;
}

.field-notes small {
  display: block;
  color: #d7cfdf;
  font-size: .67rem;
}

.field-notes strong {
  display: block;
  font-size: .84rem;
  margin-top: 4px;
}

.ticker {
  padding: 12px 0 28px;
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.ticker-grid div {
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.ticker-grid div:last-child {
  border-right: 0;
}

.ticker-grid b {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
}

.ticker-grid span {
  font-weight: 780;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #e8eee7;
  border-block: 1px solid #ced9cc;
}

.section.soft {
  background: #efe9db;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.72fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.split-title h3,
.faq h2 {
  font-family: Georgia,"Times New Roman",serif;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 12px 0 0;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.download-main {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  box-shadow: 10px 10px 0 var(--orange);
}

.download-main>div {
  flex: 1 1 520px;
}

.download-main h3 {
  font-size: 2rem;
  margin: 7px 0;
}

.download-main p {
  max-width: 700px;
  color: #ded7e5;
}

.download-main code {
  color: var(--yellow);
}

.tag {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.split-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin: 50px 0 18px;
}

.split-title h3 {
  font-size: 2rem;
}

.split-title a,
.section-head>a {
  font-weight: 850;
}

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

.repo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(47,37,64,.04);
}

.repo-card>span {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--violet);
}

.repo-card h4 {
  font-size: 1.35rem;
  margin: 10px 0;
}

.repo-card p {
  color: var(--muted);
}

.repo-card a {
  margin-top: auto;
  font-weight: 850;
}

.versions-card {
  background: var(--yellow);
}

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

.feature-grid article,
.info-card {
  background: rgba(255,255,255,.78);
  border: 1px solid #cbd7ca;
  border-radius: 25px;
  padding: 25px;
}

.feature-grid b,
.info-card b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}

.feature-grid h3,
.info-card h3 {
  font-size: 1.25rem;
}

.feature-grid p,
.info-card p {
  color: #5f685f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 12px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.guide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47,37,64,.05);
  transition: .2s transform,.2s box-shadow;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.guide-body {
  padding: 23px;
}

.guide-body h2,
.guide-body h3 {
  margin: 10px 0 12px;
  line-height: 1.18;
}

.guide-body p {
  color: var(--muted);
}

.mini-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-row span {
  font-size: .72rem;
  font-weight: 850;
  background: var(--paper);
  padding: 6px 9px;
  border-radius: 999px;
}

.faq {
  background: var(--yellow);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0,.65fr) minmax(0,1.35fr);
  gap: 60px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(47,37,64,.14);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 19px 20px;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button b {
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.faq-item>div {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.open>div {
  display: block;
}

.faq-item.open button b {
  transform: rotate(45deg);
}

.page-hero {
  padding: 74px 0 56px;
  background: linear-gradient(135deg,#efe9db,#e7efe8);
}

.page-hero h1 {
  font-size: 48px;
  max-width: 950px;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.article-hero {
  padding: 42px 0 52px;
  background: linear-gradient(135deg,#efe9db,#e7efe8);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.crumbs a {
  font-weight: 750;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.82fr);
  gap: 44px;
  align-items: center;
}

.article-hero h1 {
  font-size: 44px;
}

.article-hero p {
  font-size: 1.08rem;
  color: var(--muted);
}

.article-hero img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--green);
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.article-meta span,
.article-meta a {
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.article-zone {
  padding: 62px 0;
}

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

.toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 4px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.toc strong {
  padding: 5px 8px 10px;
}

.toc a {
  padding: 8px;
  border-radius: 10px;
  font-size: .85rem;
}

.toc a:hover {
  background: var(--paper);
}

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px,4vw,52px);
  min-width: 0;
}

.article-card h2 {
  font-family: Georgia,"Times New Roman",serif;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 2.2em 0 .65em;
  scroll-margin-top: 100px;
}

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

.article-card p {
  font-size: 1.04rem;
  color: #4f4754;
}

.article-card code {
  background: var(--paper);
  padding: 2px 6px;
  border-radius: 6px;
}

.tip {
  margin: 32px 0;
  padding: 20px;
  border-radius: 18px;
  background: #e6f0e7;
  border-left: 5px solid var(--green);
}

.source-box {
  margin-top: 52px;
  background: var(--yellow);
  padding: 26px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.source-box h2 {
  margin: 10px 0;
  font-size: 2rem;
}

.source-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-next {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 32px;
  font-weight: 850;
}

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

.version-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.version-card>span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.version-card h2 {
  font-family: Georgia,"Times New Roman",serif;
  font-size: 40px;
  line-height: 1.1;
  margin: 8px 0;
}

.version-card p {
  color: var(--muted);
}

.version-card a {
  font-weight: 900;
}

.note-box,
.prose-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px,4vw,44px);
  margin-top: 28px;
}

.prose-card {
  max-width: 960px;
}

.prose-card h2 {
  font-family: Georgia,"Times New Roman",serif;
  font-size: 30px;
  line-height: 1.2;
  margin-top: 1.6em;
}

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

.prose-card h3 {
  margin-top: 1.7em;
}

.prose-card p,
.prose-card li {
  color: #504954;
}

.prose-card ul {
  padding-left: 1.25rem;
}

.legal-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.legal-meta span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 800;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px,1.55fr) repeat(3,minmax(140px,.65fr));
  gap: 42px;
}

.footer-brand img {
  filter: none;
  width: 220px;
  max-width: 100%;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
  image-rendering: auto;
}

.footer p {
  color: #d6cfdb;
  max-width: 520px;
}

.footer h2 {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
  margin-top: 0;
}

.footer-grid>div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a {
  color: #eee8f0;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  color: #d6cfdb;
}

.error-hero {
  min-height: 55vh;
  display: grid;
  align-items: center;
}

.home-section-head {
  display: block;
  max-width: 920px;
}

.home-section-head>div {
  max-width: 920px;
}

.home-section-head>p {
  max-width: 800px;
  margin: 16px 0 0;
  font-size: 1.02rem;
}

@media (min-width:981px) and (max-width:1180px) {
  .brand img {
    width: 160px;
  }

  .nav-row {
    gap: 10px;
  }

  .nav a {
    padding: 8px 5px;
    font-size: .82rem;
  }
}

@media (max-width:980px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    display: none;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 90px);
    overflow: auto;
  }

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

  .nav a {
    padding: 12px 14px;
    white-space: normal;
  }

  .hero-grid,
  .article-hero-grid,
  .section-head,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .article-hero-grid {
    gap: 36px;
  }

  .field-card {
    max-width: 650px;
    margin-inline: auto;
    transform: none;
  }

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

  .toc {
    position: static;
    max-height: none;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .toc strong {
    grid-column: 1/-1;
  }

  .source-box {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .footer-brand {
    grid-column: 1/-1;
  }

  .section-head {
    gap: 16px;
  }

  .page-hero,
  .article-hero {
    padding-top: 56px;
  }
}

@media (max-width:680px) {
  .wrap {
    width: min(100% - 28px,1180px);
  }

  .nav-row {
    min-height: 68px;
  }

  .brand img {
    width: 168px;
  }

  .nav {
    left: 14px;
    right: 14px;
    top: 64px;
  }

  .nav.open {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 44px 0 34px;
  }

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

  .field-card {
    padding: 18px;
    border-radius: 26px;
    box-shadow: 8px 8px 0 var(--green);
  }

  .field-orbit {
    height: 250px;
  }

  .field-notes {
    grid-template-columns: 1fr;
  }

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

  .ticker-grid div {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .ticker-grid div:nth-child(2n) {
    border-right: 0;
  }

  .ticker-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .download-main,
  .split-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-main {
    padding: 26px;
    box-shadow: 7px 7px 0 var(--orange);
  }

  .download-main .button {
    width: 100%;
  }

  .repo-grid,
  .feature-grid,
  .info-grid,
  .guide-grid,
  .version-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .article-card {
    border-radius: 22px;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .article-hero h1 {
    font-size: 36px;
  }

  .source-buttons,
  .page-actions {
    width: 100%;
  }

  .source-buttons .button,
  .page-actions .button {
    width: 100%;
  }

  .article-next {
    flex-direction: column;
  }

  .footer-bottom {
    font-size: .9rem;
  }

  .section-head h2,
  .faq h2 {
    font-size: 32px;
  }

  .article-card h2 {
    font-size: 28px;
  }

  .prose-card h2 {
    font-size: 27px;
  }
}

@media (max-width:420px) {
  .wrap {
    width: min(100% - 22px,1180px);
  }

  .brand img {
    width: 154px;
  }

  .menu-btn {
    width: 43px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .ticker-grid div:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ticker-grid div:last-child {
    border-bottom: 0;
  }

  .field-orbit {
    height: 220px;
  }

  .pixel-mark {
    transform: scale(.85);
  }

  .article-zone {
    padding-top: 38px;
  }

  .article-card {
    padding: 20px;
  }

  .version-card,
  .guide-body,
  .repo-card,
  .feature-grid article,
  .info-card,
  .step {
    padding: 20px;
  }

  .footer {
    padding-top: 44px;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.hero[id],
.section[id] {
  scroll-margin-top: 90px;
}
