/* ===== 首页 page-home ===== */

.page-home {
  display: block;
  background: var(--paper);
  color: var(--ink);
}

/* ---------- 首屏框景 ---------- */
.page-home .home-hero {
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--shell-h) + 20px) var(--gutter) 44px;
  background: var(--ink);
  color: var(--paper);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: grayscale(0.4) contrast(1.08);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(31, 107, 74, 0.55) 0%, rgba(11, 26, 20, 0) 62%),
    linear-gradient(180deg, rgba(11, 26, 20, 0.9) 0%, rgba(11, 26, 20, 0.68) 44%, rgba(11, 26, 20, 0.96) 100%);
  pointer-events: none;
}

.page-home .home-hero__frame {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 16px 26px;
  border: 2px solid rgba(244, 239, 226, 0.32);
  background: rgba(18, 22, 26, 0.62);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.page-home .home-hero__corner {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--lime);
  background: var(--ink);
  padding: 4px 7px;
  border: 1px solid rgba(182, 255, 59, 0.35);
  white-space: nowrap;
}

.page-home .home-hero__corner--tl { top: -13px; left: 12px; }
.page-home .home-hero__corner--tr { top: -13px; right: 12px; }
.page-home .home-hero__corner--bl { bottom: -13px; left: 12px; }
.page-home .home-hero__corner--br { bottom: -13px; right: 12px; }

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.page-home .home-hero__ruler {
  display: none;
}

.page-home .home-hero__body {
  min-width: 0;
}

.page-home .home-crumb {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--line);
}

.page-home .home-hero__title {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(30px, 8vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .home-hero__title strong {
  font-weight: 800;
  color: var(--paper);
}

.page-home .home-hero__lede {
  margin: 18px 0 0;
  max-width: 60ch;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(244, 239, 226, 0.82);
}

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

.page-home .home-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  padding: 0;
  background: rgba(140, 154, 147, 0.34);
  border: 1px solid rgba(140, 154, 147, 0.34);
}

.page-home .home-metric {
  margin: 0;
  padding: 12px 12px 14px;
  background: rgba(11, 26, 20, 0.88);
}

.page-home .home-metric__l {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--line);
}

.page-home .home-metric__v {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--lime);
}

/* ---------- 主体骨架与赛季刻度尺 ---------- */
.page-home .home-body {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.page-home .home-rail {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 14px 0 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(140, 154, 147, 0.5);
  -webkit-overflow-scrolling: touch;
}

.page-home .home-rail__item {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 8px;
  text-decoration: none;
  color: var(--ink-mute);
  border-left: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-rail__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-rail__label {
  font-family: var(--font-sans);
  font-size: 12px;
  white-space: nowrap;
}

.page-home .home-rail__item.is-active {
  color: var(--ink);
  border-left-color: var(--lime);
}

.page-home .home-flow {
  min-width: 0;
}

/* ---------- 章节通用 ---------- */
.page-home .home-sec {
  padding: 42px 0 48px;
  border-top: 1px solid rgba(140, 154, 147, 0.45);
}

.page-home .home-sec__index {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--green);
}

.page-home .home-sec__title {
  margin: 8px 0 12px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(23px, 4.4vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.005em;
}

.page-home .home-sec__lede {
  margin: 0 0 28px;
  max-width: 64ch;
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home .home-sec--dark {
  position: relative;
  background: var(--charcoal);
  color: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(11, 26, 20, 0.18);
  padding: 30px 18px 34px;
  margin: 32px 0;
}

.page-home .home-sec--dark .home-sec__index { color: var(--lime); }
.page-home .home-sec--dark .home-sec__lede { color: rgba(244, 239, 226, 0.78); }

/* ---------- 01 两条主线 ---------- */
.page-home .home-lines {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.page-home .home-lines__copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  background: rgba(140, 154, 147, 0.45);
  border: 1px solid rgba(140, 154, 147, 0.45);
}

.page-home .home-lineitem {
  background: var(--paper-3);
  padding: 18px 16px 20px;
}

.page-home .home-lineitem__key {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green);
}

.page-home .home-lineitem__body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home .home-lineitem__use {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-mute);
  padding-left: 10px;
  border-left: 2px solid var(--lime);
}

.page-home .home-lines__media {
  margin: 0;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(11, 26, 20, 0.16);
  background: var(--paper-2);
  overflow: hidden;
}

.page-home .home-lines__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-lines__media figcaption {
  padding: 10px 12px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mute);
  border-top: 1px solid rgba(140, 154, 147, 0.5);
}

.page-home .home-sample {
  margin-top: 24px;
  padding: 18px 16px 20px;
  background: var(--paper-2);
  border-left: 4px solid var(--green);
}

.page-home .home-sample__tag {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
}

.page-home .home-sample__text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
}

/* ---------- 02 分段视图 ---------- */
.page-home .home-sec--seg {
  background: linear-gradient(180deg, rgba(232, 163, 61, 0.08) 0%, rgba(244, 239, 226, 0) 260px);
}

.page-home .home-segzone {
  min-width: 0;
}

.page-home .home-segbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.page-home .home-segbtn {
  display: inline-block;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper-3);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(11, 26, 20, 0.22);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-segbtn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(11, 26, 20, 0.28);
}

.page-home .home-segbtn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.page-home .home-segbtn--releg {
  background: var(--amber);
}

.page-home .home-segbar__hint {
  flex: 1 1 200px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mute);
}

.page-home .home-panel {
  display: none;
  scroll-margin-top: calc(var(--shell-h) + 16px);
}

.page-home .home-panel--default {
  display: block;
}

.page-home .home-segzone:has(.home-panel:target) .home-panel--default:not(:target) {
  display: none;
}

.page-home .home-panel:target {
  display: block;
}

.page-home .home-tablewrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(11, 26, 20, 0.16);
  -webkit-overflow-scrolling: touch;
}

.page-home .home-tablewrap--releg {
  border-color: var(--crimson);
  box-shadow: 6px 6px 0 rgba(142, 47, 42, 0.24);
}

.page-home .home-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13.5px;
}

.page-home .home-table__cap {
  caption-side: top;
  text-align: left;
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  background: var(--paper-3);
  border-bottom: 1px solid rgba(140, 154, 147, 0.5);
}

.page-home .home-table th,
.page-home .home-table td {
  padding: 9px 12px;
  text-align: right;
  white-space: nowrap;
  border-bottom: 1px solid rgba(140, 154, 147, 0.4);
}

.page-home .home-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.page-home .home-table--releg thead th {
  background: var(--crimson);
}

.page-home .home-table th:first-child,
.page-home .home-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  font-weight: 600;
  background: var(--paper-3);
}

.page-home .home-table thead th:first-child {
  z-index: 3;
  color: var(--paper);
}

.page-home .home-table--releg thead th:first-child {
  background: var(--crimson);
}

.page-home .home-table tbody td {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

.page-home .home-table tbody tr:nth-child(even) td:not(:first-child) {
  background: var(--paper-2);
}

.page-home .home-table tbody tr:hover td:not(:first-child) {
  background: rgba(182, 255, 59, 0.24);
}

.page-home .home-table tbody tr:hover td:first-child {
  background: rgba(182, 255, 59, 0.34);
}

.page-home .home-table--releg tbody tr:hover td:not(:first-child) {
  background: rgba(232, 163, 61, 0.24);
}

.page-home .home-table--releg tbody tr:hover td:first-child {
  background: rgba(232, 163, 61, 0.34);
}

.page-home .home-table__note {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-mute);
}

.page-home .home-segimg {
  margin: 28px 0 0;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(142, 47, 42, 0.2);
  overflow: hidden;
  background: var(--paper-2);
}

.page-home .home-segimg img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 12 / 5;
  object-fit: cover;
}

.page-home .home-segimg figcaption {
  padding: 10px 12px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mute);
  border-top: 1px solid rgba(140, 154, 147, 0.5);
}

/* ---------- 03 覆盖与更新 ---------- */
.page-home .home-cov {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(140, 154, 147, 0.32);
  border: 1px solid rgba(140, 154, 147, 0.32);
}

.page-home .home-cov__i {
  background: rgba(11, 26, 20, 0.92);
  padding: 14px 12px 16px;
}

.page-home .home-cov__n {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--lime);
  line-height: 1.1;
}

.page-home .home-cov__t {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(244, 239, 226, 0.75);
}

.page-home .home-flowline {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.page-home .home-flowline__i {
  position: relative;
  padding: 22px 0 4px;
  border-top: 1px solid rgba(140, 154, 147, 0.4);
}

.page-home .home-flowline__i::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 34px;
  height: 8px;
  background: var(--lime);
}

.page-home .home-flowline__t {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-flowline__d {
  margin: 0;
  max-width: 40ch;
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(244, 239, 226, 0.72);
}

.page-home .home-cov__src {
  margin: 24px 0 0;
  padding: 12px 14px;
  background: rgba(182, 255, 59, 0.08);
  border-left: 3px solid var(--lime);
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(244, 239, 226, 0.82);
}

/* ---------- 04 青训与履历 ---------- */
.page-home .home-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .home-duo__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 20px;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(11, 26, 20, 0.16);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-duo__item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(11, 26, 20, 0.24);
}

.page-home .home-duo__item:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.page-home .home-duo__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--green);
  border-bottom: 1px solid rgba(140, 154, 147, 0.5);
  padding-bottom: 8px;
}

.page-home .home-duo__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
}

.page-home .home-duo__body {
  margin: 0;
  flex: 1 1 auto;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home .home-duo__act {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green);
}

.page-home .home-duo__item:hover .home-duo__act {
  color: var(--ink);
}

.page-home .home-duo__media {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper-2);
}

.page-home .home-duo__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .home-duo__media figcaption {
  padding: 10px 12px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mute);
  border-top: 1px solid rgba(140, 154, 147, 0.5);
}

/* ---------- 05 数据终端 ---------- */
.page-home .home-forms {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: rgba(140, 154, 147, 0.32);
  border: 1px solid rgba(140, 154, 147, 0.32);
}

.page-home .home-form {
  background: rgba(11, 26, 20, 0.9);
  padding: 18px 16px 20px;
}

.page-home .home-form__k {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lime);
}

.page-home .home-form__d {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(244, 239, 226, 0.78);
}

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

/* ---------- 06 高频问题 ---------- */
.page-home .home-faq {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}

.page-home .home-faq summary {
  cursor: pointer;
  padding: 15px 4px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(140, 154, 147, 0.45);
  transition: color var(--dur) var(--ease);
}

.page-home .home-faq summary:hover {
  color: var(--green);
}

.page-home .home-faq summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.page-home .home-faq details[open] summary {
  color: var(--green);
}

.page-home .home-faq .qm-disclosure__body {
  padding: 0 4px 16px;
  border-bottom: 1px solid rgba(140, 154, 147, 0.45);
}

.page-home .home-faq .qm-disclosure__body p {
  margin: 12px 0 0;
  max-width: 68ch;
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home .home-faq__more {
  margin: 26px 0 0;
  padding: 14px 16px;
  background: var(--paper-2);
  border-left: 4px solid var(--green);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home .home-faq__more a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .home-faq__more a:hover {
  color: var(--ink);
}

.page-home .home-faq__more a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* ---------- 小屏保护 ---------- */
.page-home img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 479px) {
  .page-home .home-hero__corner--tr,
  .page-home .home-hero__corner--bl {
    display: none;
  }

  .page-home .home-metric__v {
    font-size: 18px;
  }

  .page-home .home-cov__n {
    font-size: 20px;
  }
}

/* ---------- 平板 ---------- */
@media (min-width: 720px) {
  .page-home .home-hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-home .home-hero__frame {
    padding: 30px 26px 32px;
  }

  .page-home .home-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-cov {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .page-home .home-flowline__i {
    padding-right: 22px;
    border-top-width: 1px;
  }

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

  .page-home .home-sec--dark {
    padding: 36px 28px 40px;
  }
}

/* ---------- 桌面：左侧贯穿刻度尺 + 框景双栏 ---------- */
@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 30px;
  }

  .page-home .home-hero__ruler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 12px;
    border-right: 1px solid rgba(140, 154, 147, 0.42);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: var(--line);
  }

  .page-home .home-hero__ruler span {
    position: relative;
    padding-left: 12px;
  }

  .page-home .home-hero__ruler span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 1px;
    background: rgba(140, 154, 147, 0.7);
  }

  .page-home .home-lines {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 26px;
    align-items: start;
  }

  .page-home .home-duo {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .page-home .home-duo__media img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (min-width: 1080px) {
  .page-home .home-body {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 40px;
    padding-bottom: 96px;
  }

  .page-home .home-rail {
    position: sticky;
    top: calc(var(--shell-h) + 24px);
    align-self: start;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding: 8px 0 0;
    margin: 0;
    border-bottom: 0;
  }

  .page-home .home-rail__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 16px 14px;
    border-left: 1px solid rgba(140, 154, 147, 0.5);
  }

  .page-home .home-rail__item.is-active {
    border-left-color: var(--ink);
  }

  .page-home .home-rail__label {
    white-space: normal;
    line-height: 1.4;
  }

  .page-home .home-sec {
    padding: 52px 0 60px;
  }

  .page-home .home-sec--dark {
    padding: 42px 36px 46px;
    margin: 40px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-segbtn,
  .page-home .home-duo__item,
  .page-home .home-rail__item,
  .page-home .home-faq summary {
    transition: none;
  }

  .page-home .home-segbtn:hover,
  .page-home .home-duo__item:hover {
    transform: none;
  }
}
<<<END>>>
