.page-home {
  background: var(--color-bg);
  color: var(--color-white);
  overflow-x: hidden;
}
.page-home,
.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}
.page-home a {
  color: inherit;
  text-decoration: none;
}

/* ===== 首屏 ===== */
.page-home .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  padding: 2.5rem 1.2rem 2rem;
  overflow: hidden;
}
.page-home .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 163, 0.14) 0, transparent 7rem),
    radial-gradient(circle at 85% 70%, rgba(201, 122, 90, 0.16) 0, transparent 6rem),
    linear-gradient(180deg, rgba(10, 14, 26, 0.7), rgba(10, 14, 26, 0.78) 45%, rgba(10, 14, 26, 0.96));
}
.page-home .hero__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 255, 163, 0.5) 1px, transparent 1.8px);
  background-size: 28px 28px;
  opacity: 0.22;
  mask-image: linear-gradient(160deg, transparent 10%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(160deg, transparent 10%, #000 70%, transparent 100%);
}
.page-home .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home .hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-neon);
  margin-bottom: 0.9rem;
}
.page-home .hero__eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--color-neon);
}
.page-home .hero__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.8rem, 11vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(10, 14, 26, 0.6);
  max-width: 8.5em;
}
.page-home .hero__lead {
  max-width: 32rem;
  margin: 1.3rem 0 1.8rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-orange);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-gray);
}
.page-home .hero__link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.page-home .hero__btn {
  min-width: 9.5rem;
}
.page-home .hero__more {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--color-gray);
}
.page-home .hero__more a {
  border-bottom: 1px solid rgba(138, 147, 166, 0.4);
  padding-bottom: 0.2rem;
  transition: color var(--transition-fast);
}
.page-home .hero__more a:hover {
  color: var(--color-neon);
}

/* 实时数据滚动条 */
.page-home .live-ticker {
  position: relative;
  z-index: 3;
  margin-top: 1.5rem;
  background: rgba(20, 27, 45, 0.8);
  border: 1px solid rgba(0, 255, 163, 0.28);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  padding: 0.65rem 0.75rem;
}
.page-home .live-ticker__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-data);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-neon);
  text-transform: uppercase;
}
.page-home .live-ticker__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 10px var(--color-neon);
  animation: aifa-home-pulse 1.6s ease-in-out infinite;
}
.page-home .live-ticker__tip {
  margin-left: auto;
  font-style: normal;
  font-weight: 400;
  color: var(--color-gray);
  letter-spacing: 0.04em;
}
.page-home .live-ticker__viewport {
  overflow: hidden;
}
.page-home .live-ticker__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: aifa-home-ticker-x 16s linear infinite;
}
.page-home .live-ticker:hover .live-ticker__list,
.page-home .live-ticker:focus-within .live-ticker__list {
  animation-play-state: paused;
}
.page-home .live-ticker__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--color-gray);
}
.page-home .live-ticker__item span {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--color-neon);
}
.page-home .live-ticker__item b {
  font-weight: 500;
  color: var(--color-white);
}
@keyframes aifa-home-pulse {
  50% { opacity: 0.35; }
}
@keyframes aifa-home-ticker-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== 区块共享头部 ===== */
.page-home .section-head {
  margin-bottom: 2rem;
  position: relative;
}
.page-home .section-head__index {
  margin: 0;
  font-family: var(--font-data);
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-gray);
  opacity: 0.7;
}
.page-home .section-head__label {
  margin: 0.6rem 0 0.3rem;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-neon);
}
.page-home .section-head__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-headline);
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .section-head__desc {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray);
}

/* ===== 数据总览 ===== */
.page-home .stats {
  position: relative;
  padding: 3.5rem 0 1rem;
}
.page-home .stats::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon));
}
.page-home .stats__container {
  padding-top: 0.5rem;
}
.page-home .stats__grid {
  display: grid;
  gap: 1rem;
}
.page-home .stat-card {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: linear-gradient(145deg, var(--color-card), rgba(20, 27, 45, 0.55));
  border: 1px solid rgba(138, 147, 166, 0.16);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  overflow: hidden;
}
.page-home .stat-card::after {
  content: "AIFA";
  position: absolute;
  right: 0.8rem;
  bottom: 0.6rem;
  font-family: var(--font-data);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: rgba(245, 247, 250, 0.1);
}
.page-home .stat-card--main {
  background: linear-gradient(150deg, rgba(0, 255, 163, 0.16), var(--color-card) 46%, rgba(20, 27, 45, 0.6));
}
.page-home .stat-card__num {
  font-family: var(--font-data);
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-neon);
}
.page-home .stat-card__num span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-gray);
  margin-left: 0.25rem;
}
.page-home .stat-card:nth-child(2) .stat-card__num { color: var(--color-orange); }
.page-home .stat-card:nth-child(3) .stat-card__num { color: var(--color-moss); }
.page-home .stat-card:nth-child(4) .stat-card__num { color: var(--color-terracotta); }
.page-home .stat-card__title {
  margin: 0.7rem 0 0.2rem;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.page-home .stat-card__body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--color-gray);
}

/* ===== 焦点赛事 ===== */
.page-home .focus {
  position: relative;
  padding: 3.5rem 0;
}
.page-home .focus::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.45), transparent);
  transform: rotate(-2deg);
}
.page-home .focus__container {
  padding-top: 0.5rem;
}
.page-home .focus__carousel {
  position: relative;
}
.page-home .focus__viewport {
  overflow: hidden;
}
.page-home .focus__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home #focus-r1:checked ~ .focus__viewport .focus__track {
  transform: translateX(0);
}
.page-home #focus-r2:checked ~ .focus__viewport .focus__track {
  transform: translateX(-100%);
}
.page-home #focus-r3:checked ~ .focus__viewport .focus__track {
  transform: translateX(-200%);
}
.page-home .match-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-card);
  border: 1px solid rgba(138, 147, 166, 0.14);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.page-home .match-card__media {
  position: relative;
  height: 11rem;
  overflow: hidden;
}
.page-home .match-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .match-card__league {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.28rem 0.55rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  font-family: var(--font-data);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-bg);
  background: var(--color-neon);
}
.page-home .match-card__body {
  padding: 1.5rem;
}
.page-home .match-card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.45rem;
  line-height: 1.15;
}
.page-home .match-card__title b {
  color: var(--color-orange);
  font-size: 0.8em;
  letter-spacing: 0.05em;
}
.page-home .match-card__meta {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--color-gray);
}
.page-home .match-card__odds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(10, 14, 26, 0.5);
  border: 1px solid rgba(138, 147, 166, 0.1);
}
.page-home .match-card__odds span {
  font-family: var(--font-data);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .match-card__odds span sup {
  font-size: 0.85rem;
  color: var(--color-neon);
}
.page-home .match-card__odds i {
  font-family: var(--font-data);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--color-gray);
}
.page-home .match-card__compare {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.page-home .match-card__compare li {
  display: grid;
  grid-template-columns: 3.8rem 1fr 3rem;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-gray);
}
.page-home .match-card__compare i {
  display: block;
  height: 0.4rem;
  border-radius: 2px;
  background: rgba(138, 147, 166, 0.16);
  overflow: hidden;
}
.page-home .match-card__compare i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-neon), var(--color-moss));
}
.page-home .match-card__compare em {
  font-family: var(--font-data);
  font-style: normal;
  text-align: right;
  color: var(--color-white);
}
.page-home .match-card__link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-data);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--color-neon);
}
.page-home .match-card__link::after {
  content: " →";
}
.page-home .focus__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-home .focus__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--color-white);
  background: var(--color-card);
  border: 1px solid rgba(138, 147, 166, 0.35);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.page-home .focus__dot:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
}
.page-home #focus-r1:checked ~ .focus__dots label[for="focus-r1"],
.page-home #focus-r2:checked ~ .focus__dots label[for="focus-r2"],
.page-home #focus-r3:checked ~ .focus__dots label[for="focus-r3"] {
  background: var(--color-neon);
  border-color: var(--color-neon);
  color: var(--color-bg);
  box-shadow: 0 0 14px rgba(0, 255, 163, 0.4);
}

/* ===== 功能入口 ===== */
.page-home .gate {
  padding: 1.5rem 0 3.5rem;
}
.page-home .gate__grid {
  display: grid;
  gap: 1.2rem;
}
.page-home .gate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid rgba(138, 147, 166, 0.16);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.page-home .gate-card:hover,
.page-home .gate-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 163, 0.5);
}
.page-home .gate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-neon);
  z-index: 1;
}
.page-home .gate-card--players::before { background: var(--color-orange); }
.page-home .gate-card--follow::before { background: var(--color-moss); }
.page-home .gate-card--report::before { background: var(--color-terracotta); }
.page-home .gate-card__content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.page-home .gate-card__index {
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--color-orange);
}
.page-home .gate-card__title {
  margin: 0.5rem 0 0.6rem;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  line-height: 1.1;
}
.page-home .gate-card__title a {
  transition: color var(--transition-fast);
}
.page-home .gate-card__title a:hover {
  color: var(--color-neon);
}
.page-home .gate-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-gray);
}
.page-home .gate-card__link {
  margin-top: 1.3rem;
  font-family: var(--font-data);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-neon);
}
.page-home .gate-card__link:hover {
  text-decoration: underline;
}
.page-home .gate-card__media {
  height: 12rem;
  overflow: hidden;
}
.page-home .gate-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.page-home .gate-card:hover .gate-card__media img {
  transform: scale(1.03);
}

/* ===== 最新战报 ===== */
.page-home .briefs {
  padding: 3.5rem 0 1.5rem;
}
.page-home .brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(138, 147, 166, 0.18);
}
.page-home .brief-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1.1rem 0.2rem;
  border-bottom: 1px solid rgba(138, 147, 166, 0.18);
  transition: background var(--transition-fast);
}
.page-home .brief-item:hover {
  background: rgba(20, 27, 45, 0.55);
}
.page-home .brief-item__index {
  grid-row: 1;
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--color-gray);
}
.page-home .brief-item__tag {
  grid-row: 1;
  grid-column: 2;
  justify-self: start;
  padding: 0.14rem 0.45rem;
  font-family: var(--font-data);
  font-size: 0.68rem;
  white-space: nowrap;
  color: var(--color-neon);
  border: 1px solid rgba(0, 255, 163, 0.3);
}
.page-home .brief-item__title {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-white);
  transition: color var(--transition-fast);
}
.page-home .brief-item__title:hover {
  color: var(--color-neon);
}
.page-home .brief-item__arrow {
  grid-row: 1 / 3;
  grid-column: 3;
  color: var(--color-orange);
  font-size: 1rem;
}

/* ===== 历史统计 ===== */
.page-home .history {
  padding: 3.5rem 0;
}
.page-home .history__container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.page-home .history__media {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
.page-home .history__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-home .history__content {
  padding: 1rem 0;
}
.page-home .history__list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.page-home .history__list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray);
}
.page-home .history__list b {
  font-family: var(--font-data);
  font-size: 1.25rem;
  color: var(--color-neon);
}
.page-home .history__filter-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.95rem;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--color-white);
  background: rgba(0, 255, 163, 0.1);
  border: 1px dashed rgba(0, 255, 163, 0.4);
}
.page-home .history__filter-demo i {
  color: var(--color-orange);
  font-style: normal;
}
.page-home .history__btn {
  margin-top: 1.3rem;
}
.page-home .history__timeline-wrap {
  margin-top: 2.8rem;
  overflow-x: auto;
}
.page-home .history__timeline {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
}
.page-home .history__line {
  stroke: rgba(138, 147, 166, 0.35);
  stroke-width: 1;
}
.page-home .history__node {
  fill: var(--color-neon);
}
.page-home .history__node--current {
  fill: var(--color-orange);
}
.page-home .history__node-label {
  fill: var(--color-gray);
  font-family: var(--font-data);
  font-size: 12px;
  text-anchor: middle;
}

/* ===== 响应式增强 ===== */
@media (min-width: 640px) {
  .page-home .hero {
    padding: 3rem 2rem 2rem;
  }
  .page-home .live-ticker__list {
    gap: 1.6rem;
  }
}

@media (min-width: 768px) {
  .page-home .section-head__title {
    font-size: 2.9rem;
  }
  .page-home .stats__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .stat-card--main {
    grid-column: 1 / span 5;
  }
  .page-home .stat-card:nth-child(2) {
    grid-column: 6 / span 7;
  }
  .page-home .stat-card:nth-child(3) {
    grid-column: 4 / span 5;
    margin-left: 0;
  }
  .page-home .stat-card:nth-child(4) {
    grid-column: 9 / span 4;
  }

  .page-home .match-card {
    grid-template-columns: 5fr 7fr;
  }
  .page-home .match-card__media {
    height: auto;
    min-height: 100%;
  }

  .page-home .gate__grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .gate-card--nav {
    grid-column: span 7;
    grid-row: span 2;
  }
  .page-home .gate-card--players {
    grid-column: span 5;
    grid-row: span 2;
  }
  .page-home .gate-card--follow {
    grid-column: span 5;
  }
  .page-home .gate-card--report {
    grid-column: span 7;
  }

  .page-home .brief-item {
    grid-template-columns: 3rem 7rem 1fr auto;
    align-items: baseline;
  }
  .page-home .brief-item__index {
    grid-row: auto;
    grid-column: 1;
  }
  .page-home .brief-item__tag {
    grid-row: auto;
    grid-column: 2;
  }
  .page-home .brief-item__title {
    grid-row: auto;
    grid-column: 3;
  }
  .page-home .brief-item__arrow {
    grid-row: auto;
    grid-column: 4;
  }

  .page-home .history__container {
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .history__media {
    grid-column: 7 / span 6;
    grid-row: 1;
  }
  .page-home .history__content {
    grid-column: 1 / span 6;
    grid-row: 1;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .page-home .hero {
    min-height: calc(100vh - 3.5rem);
    padding: 0 4rem;
  }
  .page-home .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 0 4rem;
  }
  .page-home .hero__lead {
    margin-left: 18%;
  }
  .page-home .hero__link-group {
    margin-left: 26%;
  }
  .page-home .hero__more {
    margin-left: 26%;
  }
  .page-home .live-ticker {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 13.5rem;
    margin: 0;
    z-index: 4;
  }
  .page-home .live-ticker__list {
    flex-direction: column;
    width: auto;
    animation-name: aifa-home-ticker-y;
    animation-duration: 18s;
  }
  .page-home .live-ticker__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    white-space: normal;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(138, 147, 166, 0.1);
  }
  .page-home .live-ticker__item:last-child {
    border-bottom: 0;
  }
  @keyframes aifa-home-ticker-y {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
  }

  .page-home .stats {
    padding: 5rem 0 1.5rem;
  }
  .page-home .stats__container {
    padding-left: 6%;
  }
  .page-home .focus {
    padding: 5rem 0;
  }
  .page-home .section-head--right {
    text-align: right;
    margin-left: auto;
  }
  .page-home .section-head--right .section-head__desc {
    margin-left: auto;
  }
  .page-home .focus__container {
    padding-right: 2%;
    margin-left: 4%;
  }
  .page-home .gate__container {
    padding-left: 0;
    margin-right: 4%;
  }
  .page-home .gate {
    padding: 2rem 0 5rem;
  }
  .page-home .gate-card__title {
    font-size: 1.85rem;
  }
  .page-home .briefs {
    padding: 5rem 0 2rem;
  }
  .page-home .briefs__container {
    padding-left: 8%;
  }
  .page-home .history {
    padding: 5rem 0;
  }
}
