.page-home {
  --home-radius-lg: 24px;
  --home-radius-md: 16px;
  --home-radius-sm: 10px;
  --home-dark: #081F18;
  --home-orange: #F77F00;
  --home-orange-soft: #FFE8D1;
  --home-lime-soft: #EDF3D9;
  --home-teal-dark: #007D7D;
  --home-shadow-card: 0 10px 30px rgba(11, 59, 46, 0.08);
  --home-shadow-hover: 0 18px 44px rgba(11, 59, 46, 0.16);
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.7;
}

.page-home img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-home .site-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
  display: inline-block;
  text-decoration: none;
}

.page-home .btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.page-home .btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(247, 127, 0, 0.28);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.page-home .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.page-home .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 0.875rem;
  color: var(--color-white);
  opacity: 0.75;
}

.page-home .breadcrumb__link {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.75;
}

.page-home .breadcrumb__link:hover {
  opacity: 1;
}

.page-home .breadcrumb__current {
  color: var(--color-white);
  font-weight: 500;
}

.page-home .section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 32px;
}

.page-home .section-head__index {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  letter-spacing: -0.04em;
}

.page-home .section-head__index--inline {
  -webkit-text-stroke: 2px var(--color-accent);
  font-size: 2.8rem;
}

.page-home .section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.2;
  margin: 6px 0 0;
  letter-spacing: -0.01em;
}

.page-home .section-head__desc {
  font-size: 1rem;
  color: var(--color-gray);
  margin: 6px 0 0;
  max-width: 46rem;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.page-home .tag--orange {
  background: var(--color-accent);
  color: var(--color-white);
}

.page-home .tag--green {
  background: var(--color-primary);
  color: var(--color-lime);
}

.page-home .tag--lime {
  background: var(--color-lime);
  color: var(--color-primary);
}

.page-home .tag--gray {
  background: #E6E6E3;
  color: #5A5A5A;
}

.page-home .tag--teal {
  background: #D7F2F2;
  color: #007D7D;
}

/* ===== 首屏 Hero ===== */
.page-home .home-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(247, 127, 0, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(168, 194, 86, 0.12) 0%, transparent 35%),
    linear-gradient(135deg, #081F18 0%, #0B3B2E 55%, #0D4A3E 100%);
  color: var(--color-white);
  padding: 84px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 42px solid rgba(247, 127, 0, 0.08);
  pointer-events: none;
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  position: relative;
  z-index: 1;
}

.page-home .home-hero__stage {
  display: flex;
  flex-direction: column;
}

.page-home .home-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lime);
  font-size: 0.85rem;
  margin-bottom: 14px;
  background: rgba(168, 194, 86, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  max-width: 15em;
}

.page-home .home-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36em;
  margin: 0 0 28px;
  font-weight: 400;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.page-home .home-hero__board {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--home-radius-lg);
  padding: 22px 22px 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}

.page-home .score-board__item {
  background: var(--color-white);
  color: var(--color-ink);
  border-radius: var(--home-radius-md);
  padding: 18px 18px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-left: 6px solid var(--color-border);
  position: relative;
}

.page-home .score-board__item--hot {
  border-left-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.page-home .score-board__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.page-home .score-board__team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.page-home .score-board__team-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .score-board__team-dot--green {
  background: var(--color-primary);
}

.page-home .score-board__team-dot--orange {
  background: var(--color-accent);
}

.page-home .score-board__team-name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .score-board__vs {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-gray);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.page-home .score-board__nums {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.page-home .score-board__num {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.page-home .score-board__colon {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-border);
}

.page-home .home-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.page-home .home-hero__img-wrap {
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transform: rotate(-1.5deg);
}

.page-home .home-hero__img {
  width: 100%;
}

.page-home .round-progress {
  position: relative;
  width: 200px;
  height: 200px;
}

.page-home .round-progress__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.page-home .round-progress__track {
  stroke: rgba(255, 255, 255, 0.18);
}

.page-home .round-progress__bar {
  stroke: var(--color-accent);
  stroke-linecap: round;
  animation: round-progress-fill 1.4s ease forwards;
}

@keyframes round-progress-fill {
  from {
    stroke-dashoffset: 339.29;
  }
  to {
    stroke-dashoffset: 60;
  }
}

.page-home .round-progress__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-home .round-progress__num {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
}

.page-home .round-progress__total {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-home .round-progress__badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

/* ===== 目录卡片 ===== */
.page-home .home-directory {
  padding: 92px 0 74px;
  background: var(--color-white);
}

.page-home .home-directory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .dir-card {
  background: var(--color-bg);
  border-radius: var(--home-radius-lg);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--color-ink);
  border: 1px solid var(--color-border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
  display: block;
}

.page-home .dir-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(247, 127, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-home .dir-card:hover::before {
  transform: scale(1.5);
}

.page-home .dir-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--home-shadow-hover);
  border-color: transparent;
}

.page-home .dir-card--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: transparent;
}

.page-home .dir-card--dark .dir-card__text {
  color: rgba(255, 255, 255, 0.82);
}

.page-home .dir-card--dark .dir-card__meta {
  color: var(--color-lime);
}

.page-home .dir-card--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: transparent;
}

.page-home .dir-card--accent .dir-card__text {
  color: rgba(255, 255, 255, 0.92);
}

.page-home .dir-card--accent .dir-card__meta {
  color: var(--color-lime);
}

.page-home .dir-card__num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}

.page-home .dir-card--dark .dir-card__num {
  color: var(--color-lime);
}

.page-home .dir-card--accent .dir-card__num {
  color: var(--color-white);
}

.page-home .dir-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.page-home .dir-card__text {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin: 0 0 18px;
}

.page-home .dir-card__meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-teal);
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

/* ===== 联赛筛选 ===== */
.page-home .home-league {
  padding: 92px 0 84px;
  background: var(--color-bg);
}

.page-home .home-league__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-home .league-panel {
  background: var(--color-primary);
  border-radius: var(--home-radius-lg);
  padding: 30px 26px;
  box-shadow: var(--home-shadow-card);
}

.page-home .league-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.page-home .league-panel__icon {
  font-size: 1.4rem;
}

.page-home .league-panel__label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
}

.page-home .league-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 18px;
}

.page-home .league-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .league-list__name {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.page-home .league-list__count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  white-space: nowrap;
}

.page-home .league-panel__action {
  width: 100%;
}

.page-home .league-tip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--home-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.page-home .league-tip__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 4px;
}

.page-home .league-tip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray);
}

.page-home .league-tip__link {
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.page-home .league-tip__link:hover {
  text-decoration: underline;
}

/* ===== 轮次对比 ===== */
.page-home .home-compare {
  padding: 92px 0 84px;
  background: var(--color-white);
}

.page-home .compare-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  box-shadow: var(--home-shadow-card);
  border: 1px solid var(--color-border);
}

.page-home .compare-board__visual {
  position: relative;
  min-height: 200px;
  display: none;
}

.page-home .compare-board__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .compare-board__table {
  padding: 28px 24px;
  background: var(--color-white);
}

.page-home .compare-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.page-home .compare-board__league {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-ink);
}

.page-home .compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.page-home .compare-table th {
  text-align: left;
  padding: 12px 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gray);
  border-bottom: 2px solid var(--color-border);
}

.page-home .compare-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
}

.page-home .compare-table tr:last-child td {
  border-bottom: none;
}

.page-home .compare-board__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.page-home .compare-board__switch {
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* ===== 订阅 ===== */
.page-home .home-subscribe {
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 127, 0, 0.12) 0%, transparent 40%),
    var(--color-bg);
}

.page-home .home-subscribe__grid {
  max-width: 980px;
}

.page-home .home-subscribe__card {
  background: var(--color-white);
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  box-shadow: var(--home-shadow-card);
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .home-subscribe__img-wrap {
  position: relative;
  max-height: 260px;
  overflow: hidden;
}

.page-home .home-subscribe__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-subscribe__img-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(to top, rgba(11, 59, 46, 0.35), transparent);
}

.page-home .home-subscribe__content {
  padding: 40px 36px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-subscribe__flag {
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.page-home .home-subscribe__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .home-subscribe__text {
  font-size: 0.98rem;
  color: var(--color-gray);
  margin: 0 0 20px;
  max-width: 34em;
}

.page-home .home-subscribe__points {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-subscribe__points li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.page-home .home-subscribe__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-lime);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-lime);
}

/* ===== 导出 ===== */
.page-home .home-export {
  padding: 92px 0 84px;
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-home .home-export::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 60px solid rgba(168, 194, 86, 0.1);
}

.page-home .home-export__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-home .home-export__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.page-home .home-export__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

.page-home .home-export__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
  max-width: 34em;
}

.page-home .home-export .btn--primary {
  margin-bottom: 12px;
}

.page-home .home-export__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.page-home .home-export__visual {
  position: relative;
}

.page-home .home-export__img {
  width: 100%;
  border-radius: var(--home-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.page-home .export-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.page-home .export-fields__item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-lime);
  font-family: var(--font-heading);
}

/* ===== 入口 ===== */
.page-home .home-entry {
  padding: 92px 0 100px;
  background: var(--color-bg);
}

.page-home .home-entry__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .entry-link {
  background: var(--color-white);
  border-radius: var(--home-radius-md);
  padding: 24px 26px;
  text-decoration: none;
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--color-border);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-home .entry-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow-hover);
  border-color: var(--color-accent);
}

.page-home .entry-link__code {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.08em;
}

.page-home .entry-link__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

.page-home .entry-link__text {
  font-size: 0.88rem;
  color: var(--color-gray);
  margin: 0;
}

/* ===== 响应式大屏 ===== */
@media (min-width: 560px) {
  .page-home .home-directory__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-entry__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .page-home .site-container {
    padding: 0 32px;
  }

  .page-home .home-hero {
    padding: 96px 0 110px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 70px;
    align-items: center;
  }

  .page-home .home-hero__board {
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
  }

  .page-home .home-hero__visual {
    flex-direction: row;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-home .home-hero__img-wrap {
    max-width: 460px;
  }

  .page-home .home-hero__img {
    width: 100%;
  }

  .page-home .home-league__wrap {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: stretch;
  }

  .page-home .league-tip {
    padding: 40px 34px;
  }

  .page-home .compare-board {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .page-home .compare-board__visual {
    display: block;
    min-height: 100%;
  }

  .page-home .home-subscribe__card {
    grid-template-columns: 0.7fr 1fr;
  }

  .page-home .home-subscribe__img-wrap {
    max-height: none;
    min-height: 340px;
  }

  .page-home .home-export__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .page-home .home-entry__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-home .entry-link {
    padding: 30px 22px 26px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-directory__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-hero__visual {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .page-home .home-hero__img-wrap {
    max-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .round-progress__bar {
    animation: none;
  }
}
