.page-home {
  --home-grid-line: rgba(147, 165, 196, 0.16);
  --home-grid-line-strong: rgba(147, 165, 196, 0.26);
  --home-panel-shadow: 0 24px 60px rgba(2, 6, 18, 0.26);
}

.page-home .home-container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-cream);
}

.page-home .home-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.page-home .home-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 27, 63, 0.97) 0%, rgba(11, 27, 63, 0.82) 46%, rgba(11, 27, 63, 0.5) 100%);
}

.page-home .home-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
}

.page-home .home-hero__shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  padding: 120px 0 72px;
}

.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-lime);
}

.page-home .home-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 12px var(--color-orange);
}

.page-home .home-dot--lime {
  background: var(--color-lime);
  box-shadow: 0 0 12px var(--color-lime);
}

.page-home .home-hero__title {
  margin: 18px 0 4px;
}

.page-home .home-hero__brandline {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-bluegray);
  margin-bottom: 12px;
}

.page-home .home-hero__slogan {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
  color: var(--color-cream);
}

.page-home .home-hero__slogan b {
  color: var(--color-orange);
  font-weight: 900;
}

.page-home .home-hero__lead {
  max-width: 56ch;
  margin: 26px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 239, 226, 0.9);
  border-left: 3px solid var(--color-orange);
  padding-left: 18px;
}

.page-home .home-hero__lead strong {
  color: var(--color-cream);
  font-weight: 700;
}

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

.page-home .home-btn,
.page-home .home-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  padding: 13px 22px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.page-home .home-btn {
  background: var(--color-orange);
  color: #fff;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-home .home-btn--ghost {
  border-color: var(--color-lime);
  color: var(--color-lime);
  background: rgba(0, 230, 138, 0.06);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-home .home-btn:hover,
.page-home .home-btn--ghost:hover {
  transform: translateY(-2px);
}

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

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

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

.page-home .home-hero__stats dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bluegray);
}

.page-home .home-hero__stats dd {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--color-cream);
  margin: 4px 0 0;
}

.page-home .home-hero__panel {
  position: relative;
  min-height: 300px;
  background: rgba(17, 24, 37, 0.4);
  border: 1px solid var(--home-grid-line-strong);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
  box-shadow: var(--home-panel-shadow);
}

.page-home .home-hero__pitch {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 239, 226, 0.3);
  pointer-events: none;
}

.page-home .home-hero__pitch::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(245, 239, 226, 0.2);
}

.page-home .home-hero__pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(245, 239, 226, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 77, 46, 0.14) 0 36%, transparent 40%);
}

.page-home .home-hero__orbit {
  position: absolute;
  border: 1px dashed rgba(0, 230, 138, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-hero__orbit--a {
  width: 340px;
  height: 340px;
  right: -140px;
  top: -120px;
}

.page-home .home-hero__orbit--b {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -60px;
  border-color: rgba(255, 77, 46, 0.22);
}

.page-home .home-hero__map {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: static;
  padding: 14px;
}

.page-home .home-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-cream);
  background: rgba(11, 27, 63, 0.86);
  border: 1px solid rgba(255, 107, 53, 0.65);
  font-size: 0.78rem;
  line-height: 1.3;
  padding: 8px 10px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background 0.2s, border-color 0.2s;
}

.page-home .home-mark:hover {
  background: rgba(255, 77, 46, 0.24);
  border-color: var(--color-orange);
}

.page-home .home-mark__coord {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-lime);
  letter-spacing: 0.08em;
}

.page-home .home-mark__name {
  font-weight: 700;
}

.page-home .home-hero__scroll {
  position: absolute;
  right: 20px;
  bottom: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--color-bluegray);
  writing-mode: vertical-rl;
}

.page-home .home-head {
  margin-bottom: 34px;
  max-width: 880px;
}

.page-home .home-head__meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.page-home .home-head__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: inherit;
}

.page-home .home-head__desc {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 64ch;
  opacity: 0.82;
}

.page-home .home-focus {
  background: linear-gradient(180deg, var(--color-space) 0%, #0e1f46 100%);
  color: var(--color-cream);
  padding: 72px 0;
}

.page-home .home-focus__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-home .home-focus__grid {
  display: grid;
  gap: 14px;
}

.page-home .home-signal {
  background: rgba(245, 239, 226, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-left: 4px solid var(--color-orange);
  padding: 18px 20px;
  display: grid;
  gap: 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 8px 100%);
}

.page-home .home-signal__head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.page-home .home-signal__time {
  color: var(--color-lime);
  font-weight: 700;
}

.page-home .home-signal__tag {
  color: var(--color-bluegray);
  border: 1px solid rgba(147, 165, 196, 0.4);
  padding: 2px 8px;
  letter-spacing: 0.08em;
}

.page-home .home-signal__index {
  margin-left: auto;
  color: var(--color-orange);
}

.page-home .home-signal__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.page-home .home-signal__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(245, 239, 226, 0.74);
  margin: 6px 0 0;
}

.page-home .home-signal__foot {
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(147, 165, 196, 0.22);
  padding-top: 12px;
}

.page-home .home-signal__foot a {
  color: var(--color-lime);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-home .home-signal__foot a:hover {
  border-bottom-color: var(--color-lime);
}

.page-home .home-figure {
  margin: 0;
  border: 1px solid rgba(255, 107, 53, 0.5);
  padding: 8px;
  background: rgba(17, 24, 37, 0.55);
}

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

.page-home .home-figure figcaption {
  padding: 12px 6px 4px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--color-bluegray);
}

.page-home .home-video {
  background: var(--color-cream);
  color: var(--color-ink);
  padding: 80px 0;
  border-top: 4px solid var(--color-line);
  border-bottom: 4px solid var(--color-line);
}

.page-home .home-video .home-head__desc {
  opacity: 0.8;
}

.page-home .home-video__layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.page-home .home-video__feature {
  display: grid;
  gap: 18px;
}

.page-home .home-video__cover {
  margin: 0;
  background: var(--color-cream);
  border: 1px solid rgba(255, 107, 53, 0.7);
  padding: 10px;
  box-shadow: 8px 8px 0 rgba(255, 77, 46, 0.14);
}

.page-home .home-video__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-video__cover figcaption {
  padding: 12px 4px 4px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(43, 36, 28, 0.7);
}

.page-home .home-video__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .home-video__chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(43, 36, 28, 0.78);
}

.page-home .home-video__chips em {
  font-style: normal;
}

.page-home .home-chip {
  font-family: var(--font-mono);
  font-weight: 700;
  background: var(--color-space);
  color: var(--color-lime);
  padding: 5px 9px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

.page-home .home-video__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--color-line);
}

.page-home .home-video__list li + li {
  border-top: 1px solid rgba(43, 36, 28, 0.16);
}

.page-home .home-video__list a {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  text-decoration: none;
  color: var(--color-ink);
}

.page-home .home-video__list a:hover {
  background: rgba(255, 77, 46, 0.08);
}

.page-home .home-video__index {
  font-family: var(--font-mono);
  color: var(--color-orange);
  font-size: 0.82rem;
}

.page-home .home-video__label {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .home-video__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(43, 36, 28, 0.64);
  text-align: right;
}

.page-home .home-lineup {
  background: var(--color-coal);
  color: var(--color-cream);
  padding: 80px 0;
  position: relative;
}

.page-home .home-lineup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.page-home .home-lineup .home-container {
  position: relative;
  z-index: 1;
}

.page-home .home-console {
  background: rgba(11, 27, 63, 0.74);
  border: 1px solid var(--color-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  max-width: 720px;
}

.page-home .home-console__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.45);
  background: rgba(255, 77, 46, 0.1);
}

.page-home .home-console__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
}

.page-home .home-console__dot:nth-child(2) {
  background: var(--color-lime);
}

.page-home .home-console__dot:nth-child(3) {
  background: var(--color-bluegray);
}

.page-home .home-console__title {
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--color-cream);
  margin-left: 6px;
}

.page-home .home-console__sync {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-lime);
}

.page-home .home-console__body {
  padding: 20px 22px;
}

.page-home .home-console__row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(147, 165, 196, 0.18);
}

.page-home .home-console__row:last-child {
  border-bottom: 0;
}

.page-home .home-console__label {
  flex: 0 0 150px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--color-bluegray);
}

.page-home .home-console__value {
  color: var(--color-cream);
  font-weight: 700;
  font-size: 0.96rem;
}

.page-home .home-lineup__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  max-width: 760px;
  color: rgba(245, 239, 226, 0.74);
  font-size: 0.92rem;
}

.page-home .home-lineup__note p {
  margin: 0;
  flex: 1 1 260px;
}

.page-home .home-data {
  background: var(--color-cream);
  color: var(--color-ink);
  padding: 80px 0;
}

.page-home .home-data .home-head__desc {
  opacity: 0.8;
}

.page-home .home-data__layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-data__seasons {
  display: grid;
  gap: 14px;
}

.page-home .home-season {
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
}

.page-home .home-season__label {
  font-family: var(--font-mono);
  color: rgba(43, 36, 28, 0.86);
}

.page-home .home-season__track {
  height: 12px;
  background: rgba(43, 36, 28, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.4);
}

.page-home .home-season__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--color-line), var(--color-orange) 60%);
  background-size: 26px 100%;
}

.page-home .home-season:last-child .home-season__fill {
  background: linear-gradient(90deg, var(--color-lime), #00b36e);
}

.page-home .home-season__status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(43, 36, 28, 0.7);
  text-align: right;
}

.page-home .home-data__figure {
  margin: 0;
  border: 1px solid rgba(255, 107, 53, 0.7);
  padding: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(255, 77, 46, 0.12);
}

.page-home .home-data__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-data__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--color-space);
}

.page-home .home-data__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(43, 36, 28, 0.16);
  font-size: 0.92rem;
}

.page-home .home-data__list strong {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--color-space);
  font-size: 0.9rem;
  white-space: nowrap;
}

.page-home .home-recover {
  background: var(--color-space);
  color: var(--color-cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-recover::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 230, 138, 0.3);
  pointer-events: none;
}

.page-home .home-recover__steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.page-home .home-step {
  background: rgba(245, 239, 226, 0.05);
  border: 1px solid rgba(147, 165, 196, 0.3);
  padding: 22px 20px;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 160px;
}

.page-home .home-step__num {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-orange);
}

.page-home .home-step h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.18rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.page-home .home-step p {
  margin: 0;
  color: rgba(245, 239, 226, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-home .home-recover__remind {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--color-lime);
  background: rgba(0, 230, 138, 0.08);
  padding: 18px 22px;
  max-width: 820px;
}

.page-home .home-recover__remind-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--color-lime);
}

.page-home .home-recover__remind p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 0.94rem;
  color: rgba(245, 239, 226, 0.86);
}

.page-home .home-trust {
  background: var(--color-coal);
  color: rgba(245, 239, 226, 0.78);
  padding: 30px 0;
}

.page-home .home-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.page-home .home-trust p {
  margin: 0;
  flex: 1 1 280px;
  max-width: 780px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.page-home .home-coord {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--color-lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 230, 138, 0.4);
  padding-bottom: 2px;
}

.page-home .home-coord:hover {
  color: var(--color-cream);
}

@media (max-width: 47.99rem) {
  .page-home .home-hero__map {
    padding: 0;
    background: transparent;
    border: 0;
  }

  .page-home .home-hero__pitch,
  .page-home .home-hero__orbit,
  .page-home .home-hero__scroll {
    display: none;
  }

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

  .page-home .home-hero__panel {
    min-height: 0;
    background: transparent;
    border: 0;
    clip-path: none;
    box-shadow: none;
  }

  .page-home .home-hero__shell {
    padding-top: 116px;
    padding-bottom: 40px;
    gap: 28px;
  }

  .page-home .home-focus__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .page-home .home-signal {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .page-home .home-video__list a {
    grid-template-columns: 2rem 1fr;
  }

  .page-home .home-video__meta {
    grid-column: 2;
    text-align: left;
  }

  .page-home .home-console__row {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .page-home .home-console__label {
    flex: none;
  }
}

@media (min-width: 48rem) {
  .page-home .home-console__bar {
    padding: 12px 18px;
  }

  .page-home .home-console__body {
    padding: 22px 26px;
  }

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

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

  .page-home .home-data__seasons {
    order: 1;
  }

  .page-home .home-data__figure {
    order: 2;
  }

  .page-home .home-data__list {
    order: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(43, 36, 28, 0.16);
  }

  .page-home .home-data__list li {
    border-bottom: 0;
    border-right: 1px solid rgba(43, 36, 28, 0.16);
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .page-home .home-data__list li:last-child {
    border-right: 0;
  }
}

@media (min-width: 64rem) {
  .page-home .home-hero__shell {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    padding: 132px 0 88px;
  }

  .page-home .home-hero__panel {
    min-height: 520px;
  }

  .page-home .home-hero__map {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
  }

  .page-home .home-mark {
    position: absolute;
  }

  .page-home .home-mark--schedule {
    top: 10%;
    left: 7%;
  }

  .page-home .home-mark--video {
    top: 28%;
    right: 5%;
  }

  .page-home .home-mark--lineup {
    bottom: 18%;
    left: 9%;
  }

  .page-home .home-mark--data {
    top: 6%;
    right: 18%;
  }

  .page-home .home-mark--recover {
    bottom: 10%;
    right: 5%;
  }

  .page-home .home-mark--news {
    top: 56%;
    left: 3%;
  }

  .page-home .home-focus__layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-home .home-video__layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .page-home .home-data__layout {
    grid-template-columns: 1.05fr 0.95fr 0.9fr;
  }

  .page-home .home-data__list {
    grid-column: 1 / -1;
  }
}
