:root {
  --ink: #15130f;
  --ink_soft: #3b352d;
  --paper: #ffffff;
  --paper_deep: #dce6d5;
  --clay: #d7c7ad;
  --red: #c9432b;
  --red_dark: #8d261d;
  --gold: #d7a84f;
  --green: #2f5d50;
  --code: #300a24;
  --line: rgba(21, 19, 15, 0.18);
  --shadow: 0 24px 70px rgba(39, 28, 18, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

.site_page_body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site_page_body main {
  flex: 1 0 auto;
}

.site_page_body .site_footer {
  margin-top: auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0;
  background-image:
    linear-gradient(rgba(21, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 19, 15, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

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

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

.anchor_target {
  display: block;
  height: 1px;
  scroll-margin-top: 84px;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  min-height: 68px;
  padding: 12px clamp(20px, 5vw, 64px);
  border-bottom: 2px solid var(--ink);
  background: #ffffff;
  backdrop-filter: none;
}

.site_header.is_scrolled {
  box-shadow: 0 14px 36px rgba(21, 19, 15, 0.12);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
}

.brand_mark {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper_deep);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand_mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 28px;
  line-height: 44px;
}

.site_nav {
  display: flex;
  flex: 1 1 720px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.site_nav a,
.site_nav span {
  padding: 8px 12px;
  color: var(--ink_soft);
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  white-space: nowrap;
}

.site_nav a:hover {
  color: var(--ink);
  background: rgba(215, 168, 79, 0.24);
}

.site_nav .is_disabled {
  color: #a29b91;
  cursor: default;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}

.site_nav a.is_current {
  color: var(--red);
  background: rgba(201, 67, 43, 0.08);
  box-shadow: inset 0 -2px 0 var(--red);
}

.site_nav .nav_pill {
  flex: 0 0 auto;
  margin-left: 8px;
  padding: 4px 10px;
  color: var(--paper);
  border: 2px solid var(--ink);
  background: var(--ink);
}

.language_select {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: 8px;
}

.native_language_select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.language_button {
  position: relative;
  cursor: pointer;
  min-height: 30px;
  min-width: 92px;
  padding: 4px 28px 4px 10px;
  color: var(--ink);
  font: 800 14px var(--sans);
  text-align: left;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 3px 3px 0 var(--ink);
}

.language_button::after {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--ink);
  font-size: 10px;
  content: "▼";
  transform: translateY(-50%);
}

.language_select.is_open .language_button::after {
  content: "▲";
}

.language_menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: none;
  min-width: 124px;
  padding: 5px;
  border: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 5px 5px 0 var(--ink);
}

.language_select.is_open .language_menu {
  display: grid;
  gap: 4px;
}

.language_option {
  cursor: pointer;
  width: 100%;
  padding: 7px 10px;
  color: var(--ink);
  font: 800 13px var(--sans);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 0;
  background: #ffffff;
}

.language_option:hover,
.language_option.is_active {
  border-color: var(--ink);
  background: var(--paper_deep);
}

.mobile_language_select {
  display: none;
}

.nav_toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.nav_toggle_line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

html[lang="ru"] .site_nav {
  gap: 6px 4px;
}

html[lang="ru"] .site_nav a,
html[lang="ru"] .site_nav span {
  max-width: 132px;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
}

html[lang="ru"] .site_nav .nav_pill {
  max-width: none;
  padding: 4px 10px;
  white-space: nowrap;
}

html[lang="ru"] .language_button {
  min-width: 116px;
}

html[lang="ru"] .hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(28px, 4vw, 52px);
}

html[lang="ru"] .since {
  max-width: 560px;
  font-size: clamp(16px, 1.8vw, 22px);
}

html[lang="ru"] .hero_poem_en {
  max-width: none;
  margin-left: clamp(140px, 16vw, 240px);
}

html[lang="ru"] .hero_poem_en p:not(.hero_poem_author) {
  white-space: normal;
}

html[lang="ru"] .feature_block,
html[lang="ru"] .feature_block:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

html[lang="ru"] .feature_body p:last-child,
html[lang="ru"] .community_copy p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.65;
}

html[lang="ru"] .quote_card p {
  font-size: 18px;
  line-height: 1.4;
}

html[lang="ru"] .community {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
}

html[lang="ru"] .community_grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: none;
}

html[lang="ru"] .community_grid span {
  min-height: 88px;
  padding: 12px 10px;
  font-size: 13px;
  line-height: 1.35;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  grid-template-areas:
    "copy visual"
    "download download";
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  min-height: calc(92vh - 68px);
  padding: clamp(20px, 2.7vw, 38px) clamp(20px, 5vw, 64px);
}

.hero_copy {
  grid-area: copy;
  transform: none;
}

.hero .anchor_target {
  grid-area: download;
}

.hero .download_panel {
  grid-area: download;
  position: relative;
  z-index: 8;
  width: min(1180px, 100%);
  margin-top: -68px;
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red_dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, calc(8.6vw - 12px), 104px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.since {
  max-width: 500px;
  margin: 22px 0 10px;
  color: var(--ink_soft);
  font-size: clamp(17px, 2vw, 24px);
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.25;
}

.version {
  display: inline-block;
  margin: 6px 0 24px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tutorial_entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #f7f3ec;
}

.tutorial_entry p {
  margin: 0;
  min-width: 0;
  color: #4b443a;
  font-size: 14px;
  line-height: 1.6;
}

.tutorial_entry a {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tutorial_entry_home {
  max-width: 560px;
  margin: 20px 0 0;
}

.hero_poem {
  margin-top: 40px;
  width: fit-content;
  max-width: min(320px, 100%);
  margin-left: clamp(260px, 30vw, 430px);
  color: #5a5a5a;
  font-family: "楷体", "华文楷体", "Kaiti SC", "STKaiti", "KaiTi", "DFKai-SB", "BiauKai", "KaiTi_GB2312", serif !important;
  font-size: 15px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.72;
  letter-spacing: 0.02em;
}

.hero_poem p {
  margin: 0;
  font-family: "楷体", "华文楷体", "Kaiti SC", "STKaiti", "KaiTi", "DFKai-SB", "BiauKai", "KaiTi_GB2312", serif !important;
}

.hero_poem_en {
  max-width: none;
  margin-left: clamp(140px, 16vw, 240px);
}

.hero_poem_en p:not(.hero_poem_author) {
  white-space: nowrap;
}

.hero_poem_title {
  margin-bottom: 8px;
  font-family: "楷体", "华文楷体", "Kaiti SC", "STKaiti", "KaiTi", "DFKai-SB", "BiauKai", "KaiTi_GB2312", serif !important;
  font-size: inherit;
  font-weight: 900;
}

.hero_poem_author {
  margin-top: 10px;
  display: block;
  width: 100%;
  font-family: "楷体", "华文楷体", "Kaiti SC", "STKaiti", "KaiTi", "DFKai-SB", "BiauKai", "KaiTi_GB2312", serif !important;
  font-size: 12px;
  text-align: right;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 5px 16px;
  font-weight: 900;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button_primary {
  color: var(--paper);
  background: var(--red);
}

.button_secondary {
  background: var(--paper_deep);
}

.hero_visual {
  position: relative;
  min-height: 610px;
}

.mascot_card {
  position: relative;
  grid-area: visual;
  justify-self: end;
  align-self: start;
  top: 136px;
  z-index: 5;
  width: min(28vw, 205px);
  margin: 0;
  padding: 8px 8px 6px;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.82), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(220, 230, 213, 0.82));
  box-shadow: 8px 8px 0 var(--ink), 0 28px 70px rgba(47, 93, 80, 0.2);
  transform: rotate(2deg);
}

.mascot_card::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  content: "";
  background: rgba(215, 168, 79, 0.22);
  transform: translate(12px, 14px);
}

.mascot_card img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 18px rgba(21, 19, 15, 0.12));
}

.mascot_card figcaption {
  margin-top: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.hero_code_stack {
  position: relative;
  grid-area: visual;
  z-index: 2;
  min-height: 780px;
}

.code_card,
.quote_card,
.download_panel,
.community_grid span {
  border: 2px solid var(--ink);
}

.code_card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(96%, 600px);
  overflow: visible;
  color: #f4f1ee;
  border-color: #2a1b24;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 0, rgba(117, 80, 123, 0.32), transparent 18rem),
    linear-gradient(180deg, #3b1230 0%, var(--code) 46%, #24071b 100%);
  box-shadow:
    0 22px 60px rgba(48, 10, 36, 0.32),
    8px 8px 0 rgba(21, 19, 15, 0.86);
  transform-origin: 50% 50%;
}

.code_card_1 {
  z-index: 3;
  transform: translate(-50%, -50%) rotate(0deg);
}

.code_card_2 {
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.code_card_3 {
  z-index: 1;
  transform: translate(-50%, -50%) rotate(-30deg);
}

.code_card_header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  padding: 8px 12px 8px 70px;
  color: #ded9d5;
  font-family: var(--mono);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #4b4a47 0%, #333230 100%);
}

.code_card_header::before {
  position: absolute;
  left: 14px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: #e95420;
  box-shadow:
    20px 0 0 #f6c343,
    40px 0 0 #3fb950;
}

.code_card_header span {
  overflow: hidden;
  color: #ece7e2;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.copy_button {
  flex: 0 0 auto;
  min-width: 58px;
  cursor: pointer;
  padding: 5px 9px;
  color: #e6dfd8;
  font: 800 12px var(--sans);
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(230, 223, 216, 0.32);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.copy_button:hover {
  color: #300a24;
  background: #e6dfd8;
}

pre {
  position: relative;
  margin: 0;
  padding: 16px 18px 18px;
  overflow: visible;
}

.hero_code_stack code {
  white-space: pre-wrap;
}

pre::before {
  display: block;
  margin-bottom: 8px;
  color: #8ae234;
  font: 700 12px var(--mono);
  content: "egret@lang:~$";
}

code {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.58;
  tab-size: 4;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.syntax_keyword {
  color: #f6c343;
  font-weight: 800;
}

.syntax_type {
  color: #80d7ff;
}

.syntax_string {
  color: #adf7b6;
}

.syntax_number {
  color: #ffb86c;
}

.syntax_annotation {
  color: #ff79c6;
  font-weight: 800;
}

.syntax_comment {
  color: #9aa39a;
  font-style: italic;
}

.section_intro,
.features,
.community,
.download_panel,
.site_footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section_intro {
  position: relative;
  z-index: 2;
  padding: 62px 0 36px;
  border-top: 2px solid var(--ink);
  background: var(--paper);
}

.section_intro > .eyebrow,
.community_copy > .eyebrow {
  font-size: 16px;
}

.section_intro h2,
.feature_body h2,
.community h2,
.download_panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.032em;
}

.section_intro p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--ink_soft);
  font-size: 17px;
}

.section_intro h2,
.feature_body h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.download_panel h2 {
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.community h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.features {
  display: grid;
  gap: 24px;
  padding: 30px 0 72px;
}

.feature_block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(20px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.24);
  border-top: 2px solid var(--ink);
}

.feature_block:nth-child(even) {
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
}

.feature_block:nth-child(even) .feature_body {
  order: 2;
}

.feature_label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature_body p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink_soft);
  font-size: 16px;
}

.quote_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  margin: 0;
  padding: 22px;
  background: var(--paper_deep);
  box-shadow: 7px 7px 0 var(--ink);
}

.quote_card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.32;
}

.quote_card footer {
  margin-top: 22px;
}

.quote_card strong,
.quote_card span {
  display: block;
}

.quote_card span {
  color: var(--red_dark);
  font-size: 14px;
  font-weight: 800;
}

.community {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: 70px 0;
  border-top: 2px solid var(--ink);
}

.community_copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: var(--ink_soft);
  font-size: 16px;
}

.community_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  transform: rotate(-1deg);
}

.community_grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  background: var(--clay);
  box-shadow: 4px 4px 0 var(--ink);
}

.community_grid span:nth-child(3n) {
  color: var(--paper);
  background: var(--green);
}

.community_grid span:nth-child(4n) {
  background: var(--gold);
}

.community_grid span:nth-child(5n) {
  color: var(--paper);
  background: var(--red);
}

.download_panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.94fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: clamp(22px, 3vw, 36px);
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 168, 79, 0.35), transparent 22rem),
    var(--ink);
  box-shadow: 10px 10px 0 var(--red_dark);
}

.download_panel .eyebrow {
  color: var(--gold);
}

.install_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(246, 239, 226, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.install_box code {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.download_page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 78px;
}

.download_hero {
  max-width: 760px;
  padding-bottom: 34px;
}

.download_quick_install_block {
  padding-bottom: 28px;
}

.tutorial_entry_download {
  margin: 0 0 30px;
}

.download_section_title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.8vw, 34px);
  line-height: 1.05;
}

.download_hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: normal;
}

.download_summary {
  margin: 18px 0 0;
  color: var(--ink_soft);
  font-size: 16px;
  line-height: 1.7;
}

.download_quick_install {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 14px;
  align-items: center;
  padding: clamp(10px, 1.6vw, 14px);
  color: var(--ink);
  border: 1px solid var(--line);
  background: #f6f3ee;
  box-shadow: 4px 4px 0 rgba(59, 53, 45, 0.15);
}

.download_quick_install .eyebrow {
  color: #9b6f1f;
}

.download_quick_install h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.08;
}

.download_quick_install .download_summary {
  margin-top: 0;
  color: #5a5247;
}

.download_quick_install .install_box {
  padding: 6px 10px;
  border-color: rgba(21, 19, 15, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.download_quick_install .install_box code {
  color: #2d2923;
  font-size: 11px;
}

.download_quick_install .copy_button {
  min-width: 50px;
  padding: 4px 8px;
  color: #f8f4ee;
  border-color: rgba(21, 19, 15, 0.18);
  background: #6d5a45;
  box-shadow: none;
}

.download_quick_install .copy_button:hover {
  color: #ffffff;
  background: #574635;
}

.download_platform_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.download_card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 28px);
  border: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 7px 7px 0 var(--ink);
}

.download_card_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.download_card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(8px, 3.4vw, 22px);
  line-height: 1;
}

.download_status {
  flex: 0 0 auto;
  padding: 4px 7px;
  color: var(--red_dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  border: 1px solid var(--line);
  background: rgba(215, 168, 79, 0.22);
}

.download_tagline {
  margin: 0 0 20px;
  color: #3f392f;
  font-size: 15px;
  line-height: 1.62;
}

.download_button {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}

.button_disabled {
  color: #766f65;
  cursor: default;
  border-color: #8a8378;
  background: #e7e2da;
  box-shadow: 4px 4px 0 #8a8378;
  pointer-events: none;
}

.download_source_panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: center;
  margin-top: 42px;
  padding: clamp(20px, 3vw, 32px);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--red_dark);
}

.download_source_panel .eyebrow {
  color: var(--gold);
}

.download_source_panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(12px, 3vw, 26px);
  line-height: 1.08;
}

.download_source_panel .download_summary {
  color: #e2ddd6;
}

.download_source_links {
  margin-top: 0;
}

.download_source_links a {
  color: var(--gold);
}

.news_page {
  padding: 36px clamp(20px, 5vw, 64px) 72px;
}

.news_layout {
  display: grid;
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) minmax(220px, 260px);
  gap: 36px;
  align-items: start;
}

.news_sidebar_title {
  margin: 0 0 10px;
  color: #66615a;
  font-size: 12px;
  font-weight: 700;
}

.news_sidebar_nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.news_sidebar_nav a {
  position: relative;
  display: block;
  padding: 14px 18px 14px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.news_sidebar_nav a::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: #948a7b;
  content: "›";
  transform: translateY(-50%);
}

.news_sidebar_nav a.is_active {
  color: var(--red);
}

.news_feed_link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #5a5a5a;
  font-size: 14px;
  font-weight: 700;
}

.news_feed_link::before {
  margin-right: 8px;
  color: #6f746d;
  content: "RSS";
}

.install_feed_link::before {
  content: "DOC";
}

.news_stream h1 {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.02;
}

.news_item {
  padding: 24px 0 18px;
  border-top: 1px solid var(--line);
}

.news_item:first-of-type {
  padding-top: 18px;
}

.news_item_heading {
  display: block;
}

.news_item h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding-right: 38px;
  font-size: clamp(16px, 1.7vw, 28px);
  line-height: 1.08;
}

.news_item_badge {
  position: absolute;
  top: -4px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 16px;
  padding: 0 5px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  background: linear-gradient(135deg, #42c96b 0%, #2d9d57 100%);
  box-shadow: 0 0 0 2px #ffffff;
  transform: rotate(12deg);
}

.news_item p {
  margin: 0 0 8px;
  color: #4d473f;
  font-size: 15px;
}

.news_more_link {
  display: inline-block;
  margin: 2px 0 10px;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.news_more_link::before {
  margin-right: 8px;
  content: "»";
}

.news_meta {
  color: #7d766d !important;
  font-size: 14px !important;
}

.news_archive h2 {
  margin: 2px 0 14px;
  font-size: 18px;
  line-height: 1.2;
}

.news_archive select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #5b554d;
  font: 700 14px var(--sans);
  border: 1px solid rgba(21, 19, 15, 0.16);
  border-radius: 0;
  background: #ffffff;
}

.news_article_layout {
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) minmax(180px, 220px);
}

.news_article_header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.news_article,
.news_sidebar,
.news_toc,
.install_article,
.install_article_body,
.install_section,
.install_sample {
  min-width: 0;
}

.news_article_header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.news_article_meta {
  margin-top: 14px;
}

.news_article_body {
  padding-top: 28px;
}

.news_article_body p {
  margin: 0 0 16px;
  color: #3f392f;
  font-size: 16px;
  line-height: 1.72;
}

.news_article_section {
  margin-top: 48px;
}

.news_article_section h2,
.news_toc h2 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.news_download_list,
.news_link_list,
.news_toc ul {
  margin: 0;
  padding-left: 22px;
}

.news_download_list,
.news_toc ul {
  display: grid;
  gap: 9px;
}

.news_download_item a,
.news_link_list a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news_link_disabled {
  color: #9a958d;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news_download_meta {
  margin-top: 12px;
  max-width: 100%;
  padding: 16px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  background: #efefef;
}

.news_download_meta::before {
  display: none;
  content: none;
}

.news_download_meta code {
  display: inline-block;
  width: max-content;
  max-width: none;
  min-width: max-content;
  color: #26221d;
  font-size: 13px;
  line-height: 1.72;
  text-shadow: none;
}

.news_link_list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.news_toc {
  position: sticky;
  top: 96px;
  align-self: start;
}

.news_toc h2 {
  font-size: 24px;
}

.news_toc li {
  color: #746c61;
  margin-bottom: 0;
  font-size: 14px;
}

.news_toc a {
  color: inherit;
}

.install_article_body p {
  margin: 0 0 16px;
}

.install_section + .install_section {
  margin-top: 54px;
}

.install_sample {
  margin-top: 18px;
}

.install_section_links {
  margin-top: 18px;
  margin-bottom: 6px;
}

.install_sample_caption {
  margin: 0 0 10px !important;
  color: #3d382f;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.45;
}

.install_code_block {
  margin: 0;
  max-width: 100%;
  padding: 16px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  background: #06090f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.install_code_block code {
  display: inline-block;
  width: max-content;
  max-width: none;
  min-width: max-content;
  color: #e6edf3;
  font-size: 13px;
  line-height: 1.72;
  text-shadow: none;
  white-space: pre;
}

.install_code_block .code_token_keyword {
  color: #ff7b72;
}

.install_code_block .code_token_string {
  color: #a5d6ff;
}

.install_code_block .code_token_number {
  color: #79c0ff;
}

.install_code_block .code_token_type,
.install_code_block .code_token_section {
  color: #d2a8ff;
}

.install_code_block .code_token_key,
.install_code_block .code_token_variable {
  color: #7ee787;
}

.install_code_block .code_token_option {
  color: #ffa657;
}

.install_code_block .code_token_comment {
  color: #8b949e;
}

.docs_layout {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(190px, 240px);
}

.docs_sidebar {
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding-right: 10px;
}

.docs_sidebar_nav {
  display: grid;
}

.docs_sidebar_group {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.docs_sidebar_group > a {
  position: relative;
  display: block;
  padding-right: 18px;
  color: #26221d;
  font-size: 15px;
  font-weight: 800;
}

.docs_sidebar_group > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: #948a7b;
  content: "›";
  transform: translateY(-50%);
}

.docs_sidebar_group > a.is_active {
  color: var(--red);
}

.docs_sidebar_children {
  margin: 12px 0 0;
  padding-left: 16px;
}

.docs_sidebar_children li {
  margin: 8px 0;
  color: #746c61;
  font-size: 13px;
}

.docs_sidebar_children a {
  color: inherit;
  font-weight: 600;
}

.docs_feed_link::before {
  content: "DOC";
}

.docs_article_header {
  padding-bottom: 30px;
}

.docs_summary {
  margin: 18px 0 0;
  color: #3f392f;
  font-size: 16px;
  line-height: 1.7;
}

.docs_article_body p {
  margin: 0 0 14px;
}

.docs_link_list {
  margin-top: 14px;
}

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

.docs_figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: #f7f7f7;
}

.docs_figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.docs_figure figcaption {
  margin: 0;
  padding: 12px 14px 14px;
  color: #4b4439;
  font-size: 14px;
  line-height: 1.6;
}

.docs_article_body .docs_section:first-child {
  margin-top: 0;
}

.docs_subsection_list {
  margin-top: 16px;
}

.docs_subsection + .docs_subsection {
  margin-top: 16px;
}

.docs_subsection h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.docs_subsection p {
  margin: 0;
  font-size: 15px;
}

.docs_toc_children {
  margin: 8px 0 0;
  padding-left: 18px;
}

.docs_toc_children li {
  margin: 6px 0 0;
  font-size: 13px;
}

.learn_article_body {
  font-size: 16px;
}

.learn_article_body p {
  margin: 0 0 7px;
}

.learn_article_body > p:first-child {
  margin-top: 0;
}

.learn_article_body .learn_section:first-child {
  margin-top: 0;
}

.learn_section + .learn_section {
  margin-top: 52px;
}

.learn_subsection {
  margin-top: 30px;
}

.learn_article_body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.22;
}

.learn_article_body h4 {
  margin: 18px 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.learn_list {
  margin: 0 0 18px;
  padding-left: 24px;
  color: #3f392f;
}

.learn_list li {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.72;
}

.learn_quote {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-left: 3px solid #c8bfb2;
  background: #f8f4ee;
}

.learn_quote p {
  margin: 0 !important;
  color: #51493f;
  font-size: 15px !important;
  line-height: 1.72;
}

.learn_code_sample {
  position: relative;
  margin-top: 18px;
}

.learn_code_sample .learn_copy_button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.learn_article_body code:not(pre code) {
  padding: 0 5px;
  color: #312b22;
  font-size: 0.95em;
  background: #f2eee7;
}

.learn_article_body strong {
  font-weight: 800;
}

.system_library_page {
  flex: 1;
  min-height: 0;
  padding: 0;
}

.system_library_shell {
  display: flex;
  height: 100%;
  min-height: 0;
}

.system_library_frame_wrap {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  background: #ffffff;
}

.system_library_frame {
  display: block;
  width: 100%;
  height: calc(100vh - 88px);
  min-height: calc(100vh - 88px);
  border: 0;
  background: #ffffff;
}

.site_footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 38px;
  border-top: 2px solid var(--ink);
}

.site_footer strong {
  font-family: var(--serif);
  font-size: 22px;
}

.site_footer p {
  margin: 6px 0 0;
  color: #6f746d;
  font-weight: 800;
}

.site_footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site_footer a {
  font-weight: 800;
}

@media (max-width: 980px) {
  .site_header {
    align-items: center;
    gap: 8px;
    padding-inline: 20px;
  }

  .nav_toggle {
    display: block;
    flex: 0 0 auto;
  }

  .mobile_language_select {
    display: inline-flex;
    margin-left: auto;
  }

  .site_nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .site_nav.is_open {
    display: flex;
  }

  .site_nav .nav_pill {
    margin-left: 0;
    text-align: center;
  }

  .site_nav a,
  .site_nav span {
    padding: 10px 12px;
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.26);
  }

  .site_nav .is_disabled {
    background: rgba(116, 108, 97, 0.08);
  }

  .site_nav .language_select {
    display: none;
  }

  .mobile_language_select {
    margin-left: auto;
  }

  .mobile_language_select .language_button {
    width: auto;
  }

  .hero,
  .feature_block,
  .feature_block:nth-child(even),
  .community,
  .download_panel,
  .news_layout {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "mascot"
      "download"
      "visual";
    gap: 26px;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .hero_copy {
    transform: none;
  }

  .hero .download_panel {
    margin-top: 0;
  }

  .feature_block:nth-child(even) .feature_body {
    order: 0;
  }

  .hero_visual {
    min-height: 0;
  }

  .news_page {
    padding-top: 26px;
  }

  .news_layout {
    gap: 24px;
  }

  .news_archive,
  .news_toc {
    max-width: 320px;
  }

  .news_toc {
    position: static;
  }

  .news_article_body p {
    font-size: 14px;
  }

  .news_article,
  .news_article_body,
  .news_article_section,
  .news_download_meta {
    max-width: 100%;
    min-width: 0;
  }

  .news_download_meta {
    padding: 14px 15px;
  }

  .install_article,
  .install_article_body,
  .install_section,
  .install_sample,
  .install_code_block {
    max-width: 100%;
    min-width: 0;
  }

  .install_code_block {
    padding: 14px 15px;
  }

  .docs_summary {
    font-size: 14px;
  }

  .download_summary,
  .download_tagline,
  .download_note {
    font-size: 14px;
  }

  .docs_figure_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .docs_figure figcaption {
    padding: 11px 12px 13px;
    font-size: 13px;
  }

  .mascot_card {
    position: relative;
    grid-area: mascot;
    top: auto;
    right: auto;
    width: min(180px, 56vw);
    margin: 0 auto 22px;
    transform: rotate(1deg);
  }

  .hero_code_stack {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 0;
  }

  .code_card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    overflow: hidden;
    margin-bottom: 18px;
    transform: none;
  }

  .code_card:last-child {
    margin-bottom: 0;
  }

  pre {
    max-height: none;
    overflow: visible;
  }

  .hero_code_stack code {
    display: block;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: break-spaces;
  }

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

  .download_panel {
    gap: 18px;
  }

  .download_page {
    width: min(1180px, calc(100% - 32px));
    padding-top: 34px;
  }

  .download_quick_install,
  .download_platform_grid,
  .download_source_panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site_header {
    min-height: 58px;
    gap: 6px;
    padding: 8px 14px;
  }

  .brand_mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 22px;
    line-height: 34px;
  }

  .nav_toggle {
    width: 38px;
    height: 34px;
    padding: 6px 8px;
  }

  .nav_toggle_line {
    margin: 4px 0;
  }

  .site_nav {
    top: 58px;
    right: 12px;
    left: 12px;
    padding: 10px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .site_nav a,
  .site_nav span {
    padding: 8px 10px;
    font-size: 13px;
  }

  .mobile_language_select .language_button {
    min-height: 30px;
    min-width: 88px;
    font-size: 13px;
  }

  .download_page {
    width: min(1180px, calc(100% - 24px));
    padding-top: 28px;
    padding-bottom: 58px;
  }

  .download_quick_install {
    gap: 16px;
    margin-bottom: 22px;
    padding: 16px;
    box-shadow: 4px 4px 0 rgba(59, 53, 45, 0.16);
  }

  .download_card {
    padding: 16px;
    box-shadow: 5px 5px 0 var(--ink);
  }

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

  .download_source_panel {
    gap: 18px;
    box-shadow: 6px 6px 0 var(--red_dark);
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 14px 14px 28px;
    overflow-x: hidden;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(34px, calc(15vw - 12px), 54px);
    letter-spacing: -0.055em;
  }

  .since {
    max-width: none;
    margin: 14px 0 8px;
    font-size: 16px;
  }

  .version {
    margin-bottom: 16px;
    padding: 5px 9px;
    font-size: 11px;
  }

  .hero_poem {
    margin-top: 16px;
    max-width: 100%;
    margin-right: 0;
    margin-left: auto;
    font-size: 11px;
    line-height: 1.76;
    text-align: right;
  }

  .hero_poem_en p:not(.hero_poem_author) {
    white-space: normal;
  }

  .hero_poem_title {
    margin-bottom: 6px;
    font-size: inherit;
  }

  .hero_poem_author {
    margin-top: 8px;
    font-size: 8px;
  }

  .mascot_card {
    width: min(142px, 46vw);
    margin-bottom: 16px;
    padding: 6px;
    box-shadow: 5px 5px 0 var(--ink), 0 18px 44px rgba(47, 93, 80, 0.16);
  }

  .mascot_card figcaption {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .code_card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 12px;
    box-shadow:
      0 16px 38px rgba(48, 10, 36, 0.26),
      5px 5px 0 rgba(21, 19, 15, 0.86);
  }

  .code_card_header {
    gap: 8px;
    min-height: 30px;
    padding: 6px 8px 6px 64px;
    font-size: 10px;
  }

  .code_card_header::before {
    left: 10px;
    width: 10px;
    height: 10px;
    box-shadow:
      17px 0 0 #f6c343,
      34px 0 0 #3fb950;
  }

  .copy_button {
    min-width: 54px;
    padding: 4px 7px;
    font-size: 11px;
  }

  pre {
    max-width: 100%;
    min-width: 0;
    max-height: none;
    padding: 10px 11px 11px;
    overflow: visible;
  }

  pre::before {
    margin-bottom: 6px;
    font-size: 10px;
  }

  code {
    font-size: 10.5px;
    line-height: 1.5;
  }

  .code_card code {
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: break-spaces;
  }

  .section_intro,
  .features,
  .community,
  .download_panel,
  .site_footer {
    width: calc(100% - 28px);
  }

  .section_intro {
    padding: 36px 0 24px;
  }

  .section_intro h2,
  .feature_body h2,
  .community h2 {
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.18;
  }

  .section_intro p:last-child,
  .feature_body p:last-child,
  .community_copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.62;
  }

  .features {
    gap: 18px;
    padding: 22px 0 46px;
  }

  .feature_block {
    gap: 16px;
    padding: 18px 14px;
  }

  .quote_card {
    min-height: auto;
    padding: 16px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .quote_card p {
    font-size: 17px;
  }

  .community {
    gap: 22px;
    padding: 22px 0 44px;
  }

  .community_grid {
    gap: 8px;
    transform: none;
  }

  .install_box,
  .site_footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero_actions {
    align-items: center;
    gap: 10px;
  }

  .tutorial_entry_home {
    max-width: none;
  }

  .button {
    max-width: 100%;
    width: auto;
  }

  .download_panel {
    margin-bottom: 42px;
    padding: 18px 14px;
    box-shadow: 6px 6px 0 var(--red_dark);
  }

  .download_panel h2 {
    font-size: clamp(19px, 5.8vw, 26px);
  }

  .install_box {
    gap: 8px;
    padding: 10px;
  }

  .install_box code {
    width: 100%;
    font-size: 10px;
    text-align: center;
  }

  .news_page,
  .news_article_body {
    overflow-x: hidden;
  }

  .news_download_meta {
    max-width: 100%;
    min-width: 0;
    padding: 12px;
    border-radius: 6px;
  }

  .news_download_meta code {
    font-size: 11px;
    line-height: 1.62;
  }

  .install_page,
  .install_article_body {
    overflow-x: hidden;
  }

  .install_sample {
    margin-top: 16px;
  }

  .install_sample_caption {
    font-size: 14px !important;
  }

  .install_code_block {
    max-width: 100%;
    min-width: 0;
    padding: 12px;
    border-radius: 6px;
  }

  .install_code_block code {
    font-size: 11px;
    line-height: 1.62;
  }

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

  .community_grid span {
    min-height: 76px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .news_download_meta {
    padding: 10px;
  }

  .news_download_meta code {
    font-size: 10px;
    line-height: 1.55;
  }

  .install_code_block {
    padding: 10px;
  }

  .install_code_block code {
    font-size: 10px;
    line-height: 1.55;
  }

  .hero {
    padding-inline: 12px;
  }

  .code_card_header span {
    max-width: 170px;
  }

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

  .community_grid span {
    min-height: 48px;
  }
}

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