.page-home {
  --gold-line: rgba(217, 185, 107, 0.28);
  --gold-line-strong: rgba(217, 185, 107, 0.52);
  --gold-glow: rgba(201, 162, 39, 0.35);
  --panel-deep: rgba(11, 30, 58, 0.6);
  font-family: var(--font-body);
  color: var(--porcelain);
  overflow-x: hidden;
}

.page-home a {
  color: var(--gold-faint);
  text-decoration: none;
}

.page-home a:hover {
  color: #ffffff;
}

.page-home .eyebrow {
  color: var(--gold-faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-home .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--porcelain);
  margin: 0 0 16px;
}

.page-home .section-subtitle {
  color: var(--smoke);
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
}

.page-home .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

/* ===== 首屏封面 ===== */
.home-cover {
  position: relative;
  padding: 112px 0 44px;
  background:
    radial-gradient(circle at 88% 10%, rgba(178, 34, 34, 0.14), transparent 32%),
    radial-gradient(circle at 8% 16%, rgba(244, 213, 141, 0.10), transparent 30%),
    linear-gradient(160deg, var(--space-blue) 0%, var(--midnight) 100%);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.home-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 185, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 185, 107, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.home-cover__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.home-cover__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-faint);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 7px 15px;
  margin: 0 0 24px;
}

.home-cover__title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-size: clamp(42px, 10vw, 82px);
}

.home-cover__title-main {
  display: block;
  color: var(--porcelain);
}

.home-cover__title-accent {
  display: block;
  background: linear-gradient(115deg, var(--gold-faint) 0%, var(--gold-deep) 48%, var(--gold-faint) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.9em;
}

.home-cover__lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--smoke);
  max-width: 560px;
  margin: 0 0 32px;
}

.home-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.home-cover__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.home-cover__btn--primary {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-faint));
  color: var(--space-blue);
}

.home-cover__btn--primary:hover {
  box-shadow: 0 0 26px var(--gold-glow);
  color: var(--space-blue);
}

.home-cover__btn--ghost {
  border: 1px solid var(--gold-line);
  color: var(--gold-faint);
  background: transparent;
}

.home-cover__btn--ghost:hover {
  background: rgba(244, 213, 141, 0.08);
  border-color: var(--gold-faint);
  color: #ffffff;
}

.home-cover__btn-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--space-blue);
  position: relative;
  flex: 0 0 auto;
}

.home-cover__btn--primary:hover .home-cover__btn-pulse::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(11, 30, 58, 0.35);
  animation: home-pulse 1.2s infinite ease-out;
}

@keyframes home-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cover__btn--primary:hover .home-cover__btn-pulse::before {
    animation: none;
  }
}

.home-cover__btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.home-cover__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
}

.home-cover__stat {
  padding: 8px 24px 8px 0;
  margin: 0;
}

.home-cover__stat dt {
  font-size: 12px;
  color: var(--smoke);
  margin-bottom: 4px;
}

.home-cover__stat dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-faint);
  line-height: 1;
}

.home-cover__stat dd strong {
  font-size: 40px;
  font-weight: 700;
}

.home-cover__visual {
  position: relative;
}

.home-cover__figure {
  margin: 0;
  position: relative;
  border: 1px solid var(--gold-line);
  background: rgba(8, 18, 37, 0.66);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.home-cover__figure::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  pointer-events: none;
  z-index: -1;
}

.home-cover__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(1.06) contrast(1.02);
}

.home-cover__figure-caption {
  display: block;
  padding: 10px 4px 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--smoke);
}

.home-cover__toc {
  border: 1px solid var(--gold-line);
  background: var(--panel-deep);
  padding: 20px 24px;
}

.home-cover__toc-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-faint);
}

.home-cover__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: home-toc;
}

.home-cover__toc-list li {
  margin: 0;
}

.home-cover__toc-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(217, 185, 107, 0.12);
  color: var(--porcelain);
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.home-cover__toc-list a:hover {
  color: var(--gold-faint);
  padding-left: 6px;
}

.home-cover__toc-list li:last-child a {
  border-bottom: 0;
}

.home-cover__toc-list span {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-deep);
  min-width: 24px;
}

/* ===== 新旧导航对照 ===== */
.home-compare {
  padding: 56px 0;
  background:
    linear-gradient(180deg, rgba(244, 213, 141, 0.035), transparent 180px),
    var(--midnight);
  border-bottom: 1px solid var(--gold-line);
}

.home-compare__head {
  margin-bottom: 34px;
}

.home-compare__title {
  font-size: clamp(28px, 5vw, 46px);
}

.home-compare__subtitle {
  margin: 0;
}

.home-compare__body {
  display: grid;
  gap: 30px;
}

.home-compare__cards {
  display: grid;
  gap: 20px;
}

.home-version {
  position: relative;
  border: 1px solid var(--gold-line);
  background: linear-gradient(145deg, var(--graphite) 0%, var(--space-blue) 100%);
  padding: 24px 22px;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-version:hover {
  border-color: var(--gold-line-strong);
  box-shadow: inset 0 0 30px rgba(244, 213, 141, 0.05);
}

.home-version::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: 0.35;
}

.home-version--new {
  border-color: rgba(201, 162, 39, 0.5);
}

.home-version__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-faint);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.home-version__name {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--porcelain);
}

.home-version__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.home-version__list li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.6;
}

.home-version__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 9px;
  height: 1px;
  background: var(--gold-deep);
}

.home-version__foot {
  margin: 0;
  padding-top: 13px;
  border-top: 1px dashed rgba(217, 185, 107, 0.3);
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.6;
}

.home-compare__visual {
  margin-top: 2px;
}

.home-compare__figure {
  margin: 0;
  border: 1px solid var(--gold-line);
  padding: 8px;
  background: var(--space-blue);
}

.home-compare__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 720 / 520;
}

.home-compare__caption {
  display: block;
  padding: 10px 4px 0;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 0.04em;
}

.home-compare__more {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.home-compare__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gold-faint);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-compare__more-link:hover {
  border-color: var(--gold-faint);
  color: #ffffff;
}

/* ===== 记录查询区 ===== */
.home-record {
  padding: 56px 0;
  background:
    radial-gradient(circle at 12% 90%, rgba(244, 213, 141, 0.07), transparent 30%),
    linear-gradient(150deg, var(--space-blue) 0%, var(--midnight) 100%);
  border-bottom: 1px solid var(--gold-line);
}

.home-record__grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.home-record__title {
  font-size: clamp(26px, 4.6vw, 42px);
}

.home-record__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoke);
  max-width: 620px;
}

.home-record__features {
  list-style: none;
  margin: 26px 0;
  padding: 0;
}

.home-record__features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(217, 185, 107, 0.12);
}

.home-record__features li:last-child {
  border-bottom: 0;
}

.home-record__features strong {
  display: block;
  color: var(--porcelain);
  font-size: 14px;
  margin-bottom: 3px;
}

.home-record__features span {
  color: var(--smoke);
  font-size: 13px;
}

.home-record__num {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold-deep);
  line-height: 1.5;
  min-width: 26px;
}

.home-record__action {
  border-color: var(--gold-line);
  color: var(--gold-faint);
  background: transparent;
}

.home-record__action:hover {
  border-color: var(--gold-faint);
  background: rgba(244, 213, 141, 0.06);
  color: #ffffff;
}

.home-record__chart {
  border: 1px solid var(--gold-line);
  background: linear-gradient(145deg, var(--graphite) 0%, var(--space-blue) 100%);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.home-record__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(217, 185, 107, 0.14);
}

.home-record__chart-head span {
  color: var(--smoke);
  font-size: 13px;
}

.home-record__chart-head strong {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-faint);
}

.home-record__bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
}

.home-record__bar {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: var(--smoke);
  font-size: 12px;
}

.home-record__bar-fill {
  display: block;
  font-style: normal;
  width: 100%;
  max-width: 42px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--gold-faint) 0%, var(--gold-deep) 100%);
}

.home-record__bar-fill--1 { height: 30%; opacity: 0.72; }
.home-record__bar-fill--2 { height: 42%; opacity: 0.78; }
.home-record__bar-fill--3 { height: 38%; opacity: 0.84; }
.home-record__bar-fill--4 { height: 58%; opacity: 0.9; }
.home-record__bar-fill--5 { height: 52%; opacity: 0.94; }
.home-record__bar-fill--6 { height: 76%; opacity: 1; }

.home-record__chart-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(217, 185, 107, 0.12);
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.6;
}

/* ===== 186条规则分区 ===== */
.home-rules {
  padding: 56px 0;
  background: var(--graphite);
  border-bottom: 1px solid var(--gold-line);
}

.home-rules__grid {
  display: grid;
  gap: 30px;
}

.home-rules__title {
  font-size: clamp(25px, 4.4vw, 40px);
}

.home-rules__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoke);
}

.home-rules__map {
  padding: 24px;
  border: 1px solid var(--gold-line);
  background: rgba(11, 30, 58, 0.35);
}

.home-rules__total {
  font-family: var(--font-serif);
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-faint);
  margin-bottom: 22px;
}

.home-rules__total span {
  font-size: 20px;
  color: var(--smoke);
  margin-left: 8px;
}

.home-rules__zones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.home-rules__zones li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(217, 185, 107, 0.16);
  border-radius: 6px;
  background: rgba(8, 18, 37, 0.3);
  color: var(--porcelain);
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.home-rules__zones li:hover {
  border-color: var(--gold-line-strong);
  background: rgba(244, 213, 141, 0.04);
}

.home-rules__zone-num {
  font-family: var(--font-serif);
  color: var(--gold-faint);
  font-size: 13px;
}

.home-rules__zone-count {
  margin-left: auto;
  color: var(--smoke);
  font-size: 13px;
}

.home-rules__more-wrap {
  margin-top: 4px;
}

.home-rules__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-faint);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-rules__more:hover {
  border-color: var(--gold-faint);
  color: #ffffff;
}

/* ===== 积分兑换区 ===== */
.home-points {
  padding: 56px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(178, 34, 34, 0.12), transparent 34%),
    linear-gradient(150deg, var(--space-blue) 0%, var(--midnight) 100%);
  border-bottom: 1px solid var(--gold-line);
}

.home-points__title {
  font-size: clamp(26px, 4.6vw, 42px);
}

.home-points__subtitle {
  margin: 0;
}

.home-points__wrapper {
  margin-top: 30px;
  border: 1px solid rgba(201, 162, 39, 0.42);
  background:
    radial-gradient(circle at 24% 12%, rgba(244, 213, 141, 0.09), transparent 55%),
    linear-gradient(150deg, var(--space-blue) 0%, var(--graphite) 100%);
  padding: 26px;
  display: grid;
  gap: 26px;
}

.home-points__lead {
  text-align: center;
}

.home-points__cycle {
  display: block;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.2;
  color: var(--gold-faint);
}

.home-points__types {
  display: block;
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, var(--gold-faint) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.home-points__lead p {
  margin: 12px 0 0;
  color: var(--smoke);
  font-size: 14px;
}

.home-points__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.home-points__list li {
  border: 1px solid rgba(217, 185, 107, 0.18);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  color: var(--smoke);
  font-size: 14px;
  background: rgba(8, 18, 37, 0.25);
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.home-points__list li:hover {
  border-color: var(--gold-line-strong);
  background: rgba(244, 213, 141, 0.06);
  color: var(--gold-faint);
  box-shadow: inset 0 0 22px rgba(244, 213, 141, 0.04);
}

/* ===== 客户端补丁区 ===== */
.home-patch {
  padding: 56px 0;
  background: var(--midnight);
  border-bottom: 1px solid var(--gold-line);
}

.home-patch__grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.home-patch__title {
  font-size: clamp(26px, 4.6vw, 42px);
}

.home-patch__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoke);
  max-width: 620px;
}

.home-patch__meta {
  margin: 24px 0;
  border: 1px solid var(--gold-line);
  background: var(--panel-deep);
  padding: 20px;
}

.home-patch__version {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold-faint);
  margin-bottom: 12px;
}

.home-patch__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-patch__meta li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.6;
}

.home-patch__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 9px;
  height: 1px;
  background: var(--gold-deep);
}

.home-patch__action {
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-faint));
  color: var(--space-blue);
}

.home-patch__action:hover {
  box-shadow: 0 0 24px var(--gold-glow);
  color: var(--space-blue);
}

.home-patch__side {
  border: 1px solid var(--gold-line);
  padding: 22px;
  background: rgba(30, 34, 42, 0.55);
}

.home-patch__board {
  border: 1px solid rgba(201, 162, 39, 0.5);
  background: linear-gradient(145deg, rgba(244, 213, 141, 0.08), transparent);
  text-align: center;
  padding: 20px;
  margin-bottom: 18px;
}

.home-patch__board span {
  display: block;
  font-size: 13px;
  color: var(--smoke);
  margin-bottom: 6px;
}

.home-patch__board strong {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-faint);
}

.home-patch__side p {
  margin: 0;
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== 全站索引 ===== */
.home-index {
  padding: 56px 0 0;
  background: var(--space-blue);
}

.home-index__title {
  font-size: clamp(26px, 4.6vw, 42px);
}

.home-index__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 12px;
}

.home-index__links a {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--smoke);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-index__links a:hover {
  color: #ffffff;
  border-color: var(--gold-faint);
  background: rgba(244, 213, 141, 0.07);
}

.home-index__spectrum {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 34px;
  border-top: 1px solid var(--gold-line);
  object-fit: cover;
  aspect-ratio: 1280 / 240;
}

/* ===== 用户支持区 ===== */
.home-support {
  padding: 56px 0;
  background: var(--graphite);
  border-bottom: 1px solid var(--gold-line);
}

.home-support__inner {
  display: grid;
  gap: 26px;
  align-items: center;
}

.home-support__content {
  order: 1;
}

.home-support__title {
  font-size: clamp(25px, 4.4vw, 40px);
}

.home-support__note {
  margin: 0 0 22px;
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.85;
  max-width: 600px;
}

.home-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.home-support__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-faint);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-support__link:hover {
  border-color: var(--gold-faint);
  color: #ffffff;
}

.home-support__figure {
  order: 2;
  margin: 0;
  border: 1px solid var(--gold-line);
  padding: 8px;
  background: rgba(11, 30, 58, 0.5);
}

.home-support__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 800 / 480;
  opacity: 0.92;
}

/* ===== 桌面断点 ===== */
@media (min-width: 1024px) {
  .home-cover {
    padding: 148px 0 64px;
  }

  .home-cover__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 40px 60px;
    align-items: start;
  }

  .home-cover__content {
    grid-column: 1;
    grid-row: 1;
  }

  .home-cover__visual {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .home-cover__toc {
    grid-column: 1;
    grid-row: 2 / span 2;
    align-self: end;
  }

  .home-cover__kicker {
    font-size: 13px;
  }

  .home-cover__lead {
    font-size: 18px;
  }

  .home-compare {
    padding: 80px 0;
  }

  .home-compare__head {
    margin-bottom: 44px;
  }

  .home-compare__body {
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
    gap: 40px;
    align-items: start;
  }

  .home-compare__cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .home-version--new {
    transform: translateY(22px);
  }

  .home-compare__visual {
    margin-top: 0;
  }

  .home-record {
    padding: 80px 0;
  }

  .home-record__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }

  .home-rules {
    padding: 80px 0;
  }

  .home-rules__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 60px;
    align-items: start;
  }

  .home-rules__more-wrap {
    grid-column: 1 / -1;
  }

  .home-points {
    padding: 80px 0;
  }

  .home-points__wrapper {
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
  }

  .home-points__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-patch {
    padding: 80px 0;
  }

  .home-patch__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
  }

  .home-index {
    padding: 80px 0 0;
  }

  .home-index__links {
    margin-top: 36px;
    gap: 12px;
  }

  .home-index__links a {
    padding: 10px 20px;
  }

  .home-support {
    padding: 72px 0;
  }

  .home-support__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .home-support__content {
    order: 2;
  }

  .home-support__figure {
    order: 1;
  }
}

@media (min-width: 1400px) {
  .home-cover__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .home-cover__title {
    font-size: 88px;
  }

  .home-compare__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 7fr);
  }
}
