.page-home {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===== 首屏：推开这扇门 ===== */
.page-home .hero-door {
  position: relative;
  background: var(--space-900);
  color: var(--paper);
  overflow: hidden;
  padding: 72px 0 96px;
}

.page-home .hero-door__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
}

.page-home .hero-door__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--space-900) 35%, rgba(10, 20, 40, 0.55) 70%, rgba(10, 20, 40, 0.25) 100%);
}

.page-home .hero-door__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-door::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: var(--paper);
  z-index: 2;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-home .hero-door__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-home .hero-door__kicker {
  font-family: var(--font-data);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.page-home .hero-door__title {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--paper);
}

.page-home .hero-door__lead {
  max-width: 36em;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.86);
}

.page-home .hero-door__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-home .hero-door__numbers {
  font-family: var(--font-data);
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.7);
  margin: 36px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 230, 0.22);
}

.page-home .hero-door__numbers strong {
  color: var(--cyan);
  font-weight: 700;
}

.page-home .hero-door__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.page-home .hero-door__panel {
  background: rgba(16, 36, 62, 0.92);
  border: 1px solid rgba(229, 182, 62, 0.38);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.page-home .hero-door__panel-title {
  font-family: var(--font-data);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .hero-door__panel-title::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--signal-orange);
  border-radius: 999px;
}

.page-home .hero-door__panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .hero-door__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(244, 239, 230, 0.24);
}

.page-home .hero-door__stat-label {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.58);
}

.page-home .hero-door__stat-value {
  font-family: var(--font-headline);
  font-size: 1.7rem;
  color: var(--cyan);
  line-height: 1.1;
}

.page-home .hero-door__panel-foot {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.86);
}

.page-home .hero-door__aside-note {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.55);
  margin: 0;
  padding-left: 6px;
}

/* ===== 赛事轮次总览 ===== */
.page-home .match-section {
  background: var(--paper);
  padding: 56px 0 64px;
}

.page-home .match-section__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .match-section__kicker {
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--signal-orange);
  margin: 0 0 8px;
}

.page-home .match-section__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: var(--ink);
}

.page-home .match-section__lead {
  margin: 12px 0 0;
  max-width: 42em;
  line-height: 1.7;
  color: rgba(28, 45, 58, 0.78);
}

.page-home .match-section__toplinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-home .door-link {
  font-weight: 600;
  color: var(--signal-orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(249, 115, 22, 0.35);
  padding-bottom: 2px;
}

.page-home .match-section__body {
  display: grid;
  gap: 26px;
}

.page-home .match-card {
  background: var(--panel);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}

.page-home .match-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--signal-orange);
}

.page-home .match-card__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.14);
  margin-bottom: 4px;
}

.page-home .match-card__bar-label {
  font-family: var(--font-data);
  letter-spacing: 0.05em;
  color: var(--gold);
}

.page-home .match-card__bar-count {
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.6);
}

.page-home .match-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .match-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(244, 239, 230, 0.12);
}

.page-home .match-row:last-child {
  border-bottom: none;
}

.page-home .match-row__league {
  font-weight: 700;
  font-size: 1rem;
}

.page-home .match-row__round {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--gold);
}

.page-home .match-row__time {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.65);
}

.page-home .match-row__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.78);
  justify-self: end;
}

.page-home .match-row__link {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}

.page-home .match-row__link::after {
  content: " →";
}

.page-home .match-season {
  margin-top: 18px;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: var(--radius-md);
}

.page-home .match-season summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold);
  list-style: none;
}

.page-home .match-season summary::-webkit-details-marker {
  display: none;
}

.page-home .match-season summary::after {
  content: "＋";
  margin-left: 8px;
  color: var(--signal-orange);
}

.page-home .match-season[open] summary::after {
  content: "－";
}

.page-home .match-season__panel {
  padding: 0 18px 18px;
  color: rgba(244, 239, 230, 0.75);
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-home .match-season__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.page-home .match-season__tags span {
  background: rgba(244, 239, 230, 0.1);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--paper);
}

.page-home .match-aside {
  position: relative;
}

.page-home .match-aside__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.page-home .match-aside__chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(10, 20, 40, 0.88);
  color: var(--paper);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--signal-orange);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .match-section__foot {
  margin: 28px 0 0;
  font-size: 0.9rem;
  color: rgba(28, 45, 58, 0.7);
}

.page-home .match-section__foot a {
  color: var(--signal-orange);
  font-weight: 600;
  text-decoration: none;
}

/* ===== 费用对照 ===== */
.page-home .cost-section {
  position: relative;
  background: var(--paper);
  padding: 64px 0 56px;
}

.page-home .cost-section__bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  overflow: hidden;
  pointer-events: none;
}

.page-home .cost-section__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .cost-section__inner {
  position: relative;
  z-index: 1;
}

.page-home .cost-section__kicker {
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--signal-orange);
  margin: 0 0 8px;
}

.page-home .cost-section__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: var(--ink);
}

.page-home .cost-section__lead {
  max-width: 44em;
  margin: 12px 0 0;
  line-height: 1.7;
  color: rgba(28, 45, 58, 0.78);
}

.page-home .cost-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.page-home .cost-card {
  background: var(--paper-dim);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .cost-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 20, 40, 0.12);
}

.page-home .cost-card--pro {
  background: var(--panel);
  color: var(--paper);
  border-color: rgba(249, 115, 22, 0.55);
}

.page-home .cost-card--pro:hover {
  border-color: var(--signal-orange);
}

.page-home .cost-card--all {
  background: linear-gradient(160deg, var(--paper-dim) 0%, #efddc0 100%);
}

.page-home .cost-card__name {
  font-family: var(--font-data);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--signal-orange);
}

.page-home .cost-card--pro .cost-card__name {
  color: var(--gold);
}

.page-home .cost-card__price {
  font-family: var(--font-headline);
  font-size: 3.2rem;
  margin: 0;
  line-height: 1;
  color: var(--ink);
}

.page-home .cost-card--pro .cost-card__price {
  color: var(--paper);
}

.page-home .cost-card__cur {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--signal-orange);
  margin-right: 2px;
}

.page-home .cost-card__per {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: rgba(28, 45, 58, 0.55);
  margin-left: 4px;
}

.page-home .cost-card--pro .cost-card__per {
  color: rgba(244, 239, 230, 0.6);
}

.page-home .cost-card__desc {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(28, 45, 58, 0.7);
}

.page-home .cost-card--pro .cost-card__desc {
  color: rgba(244, 239, 230, 0.75);
}

.page-home .cost-card__list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .cost-card__list li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: rgba(28, 45, 58, 0.85);
}

.page-home .cost-card--pro .cost-card__list li {
  color: rgba(244, 239, 230, 0.88);
}

.page-home .cost-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.42em;
  width: 9px;
  height: 9px;
  background: var(--signal-orange);
  transform: rotate(45deg);
  border-radius: 2px;
}

.page-home .cost-card__btn {
  margin-top: 16px;
  align-self: flex-start;
}

.page-home .cost-section__foot {
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(28, 45, 58, 0.6);
  padding-left: 4px;
}

/* ===== 反馈更新时间 ===== */
.page-home .refresh-section {
  background: var(--space-900);
  color: var(--paper);
  clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
  padding: 80px 0;
}

.page-home .refresh-section__inner {
  display: grid;
  gap: 44px;
}

.page-home .refresh-section__kicker {
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--signal-orange);
  margin: 0 0 10px;
}

.page-home .refresh-section__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0;
  color: var(--paper);
}

.page-home .refresh-section__lead {
  max-width: 36em;
  margin: 16px 0 0;
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.82);
}

.page-home .refresh-section__facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.page-home .refresh-section__facts li {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.72);
}

.page-home .refresh-section__facts strong {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  color: var(--gold);
  display: inline-block;
  margin-right: 6px;
}

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

.page-home .refresh-dial {
  width: min(240px, 72vw);
  aspect-ratio: 1 / 1;
}

.page-home .refresh-dial__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .refresh-case {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  width: 100%;
}

.page-home .refresh-case__item {
  background: rgba(16, 36, 62, 0.8);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 108px;
  align-items: center;
  margin: 0;
}

.page-home .refresh-case__time {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--cyan);
}

/* ===== 今日战报与失球分布 ===== */
.page-home .brief-section {
  background: var(--paper);
  padding: 72px 0 64px;
}

.page-home .brief-section__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.page-home .brief-section__kicker {
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--signal-orange);
  margin: 0 0 8px;
}

.page-home .brief-section__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: var(--ink);
}

.page-home .brief-section__lead {
  margin: 12px 0 0;
  max-width: 44em;
  line-height: 1.7;
  color: rgba(28, 45, 58, 0.78);
}

.page-home .brief-list {
  display: grid;
  gap: 20px;
}

.page-home .brief-card {
  background: #fffdf8;
  border: 1px solid rgba(28, 45, 58, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-home .brief-card:hover {
  box-shadow: 0 18px 40px rgba(10, 20, 40, 0.12);
  transform: translateY(-3px);
}

.page-home .brief-card__thumb {
  height: 150px;
  overflow: hidden;
}

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

.page-home .brief-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.page-home .brief-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(28, 45, 58, 0.6);
}

.page-home .brief-card__status {
  background: rgba(47, 181, 127, 0.15);
  color: var(--green);
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
}

.page-home .brief-card__title {
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
}

.page-home .brief-card__summary {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(28, 45, 58, 0.7);
  margin: 0;
}

.page-home .lossbar {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 76px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(28, 45, 58, 0.14);
}

.page-home .lossbar__col {
  flex: 1;
  background: linear-gradient(180deg, var(--signal-orange) 0%, rgba(249, 115, 22, 0.55) 100%);
  border-radius: 7px 7px 3px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-height: 16px;
}

.page-home .lossbar__col:nth-child(3n) {
  background: linear-gradient(180deg, var(--gold) 0%, rgba(229, 182, 62, 0.5) 100%);
}

.page-home .lossbar__n {
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-top: 4px;
}

.page-home .lossbar__r {
  font-family: var(--font-data);
  font-size: 0.62rem;
  color: rgba(28, 45, 58, 0.6);
  line-height: 1.2;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-home .brief-card__more {
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--signal-orange);
  text-decoration: none;
}

.page-home .brief-card__more::after {
  content: " →";
}

/* ===== 归档入口与华人测试版 ===== */
.page-home .archive-section {
  background: var(--paper-dim);
  padding: 68px 0 52px;
}

.page-home .archive-section__kicker {
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--signal-orange);
  margin: 0 0 8px;
}

.page-home .archive-section__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  color: var(--ink);
}

.page-home .archive-section__lead {
  max-width: 48em;
  margin: 12px 0 0;
  line-height: 1.7;
  color: rgba(28, 45, 58, 0.78);
}

.page-home .archive-section__grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.page-home .archive-panel {
  position: relative;
  background: var(--space-900);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.page-home .archive-panel::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 54%;
  width: 12px;
  height: 56px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(229, 182, 62, 0.2);
}

.page-home .archive-panel__label {
  font-family: var(--font-data);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0;
}

.page-home .archive-panel__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .archive-panel__field {
  background: rgba(16, 36, 62, 0.9);
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 320px;
}

.page-home .archive-panel__type {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.6);
}

.page-home .archive-panel__value {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--paper);
}

.page-home .archive-panel__btn {
  align-self: flex-start;
  margin-top: 8px;
  max-width: 280px;
}

.page-home .archive-panel__note {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.55);
  margin: 0;
  max-width: 30em;
}

.page-home .cnbeta-panel {
  background: var(--paper);
  border: 1px solid rgba(28, 45, 58, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .cnbeta-panel__label {
  font-family: var(--font-data);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--signal-orange);
  margin: 0;
}

.page-home .cnbeta-panel__title {
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
}

.page-home .cnbeta-panel__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(28, 45, 58, 0.78);
  margin: 0;
}

.page-home .cnbeta-panel__meta {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .cnbeta-panel__meta li {
  font-family: var(--font-data);
  font-size: 0.78rem;
  background: rgba(229, 182, 62, 0.18);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
}

.page-home .archive-section__foot {
  margin-top: 32px;
  border-top: 1px solid rgba(28, 45, 58, 0.14);
  padding-top: 22px;
  font-size: 0.9rem;
  color: rgba(28, 45, 58, 0.72);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .archive-section__foot a {
  color: var(--signal-orange);
  font-weight: 600;
  text-decoration: none;
}

.page-home .archive-section__legal {
  display: flex;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(28, 45, 58, 0.5);
}

.page-home .archive-section__legal a {
  font-weight: 400;
  color: rgba(28, 45, 58, 0.68);
}

/* ===== 桌面端增强布局 ===== */
@media (min-width: 768px) {

  .page-home .hero-door__inner {
    flex-direction: row;
    gap: 56px;
  }

  .page-home .hero-door__main {
    flex: 1 1 58%;
  }

  .page-home .hero-door__aside {
    flex: 1 1 42%;
    align-self: flex-end;
    margin-bottom: 48px;
  }

  .page-home .match-section__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .match-section__toplinks {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .page-home .match-row {
    grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr auto;
    gap: 12px;
  }

  .page-home .match-row__link {
    grid-column: auto;
  }

  .page-home .match-row__status {
    justify-self: start;
  }

  .page-home .brief-section__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .brief-list {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .page-home .archive-section__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-home .archive-panel__fields {
    flex-direction: row;
    gap: 16px;
  }
}

@media (min-width: 1024px) {

  .page-home .hero-door__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 64px;
    display: grid;
  }

  .page-home .hero-door__aside {
    margin-bottom: 0;
  }

  .page-home .hero-door__title {
    font-size: clamp(3.5rem, 8vw, 8rem);
  }

  .page-home .match-section__body {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 32px;
    align-items: center;
  }

  .page-home .match-aside {
    margin-top: 84px;
  }

  .page-home .cost-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .page-home .refresh-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-home .refresh-section__dial {
    align-items: center;
    justify-content: center;
  }

  .page-home .refresh-case {
    max-width: 360px;
  }

  .page-home .cost-card {
    padding: 34px 28px;
  }

  .page-home .archive-panel {
    padding: 40px 34px;
  }
}
