.page-home {
  --home-orange: #ff6b00;
  --home-deep-blue: #0a2540;
  --home-text-muted: rgba(255, 255, 255, 0.72);
  --home-panel-border: #e0e0e0;
  --home-soft-blue: #f0f4fa;
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

.page-home .home-section-head__index {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--home-orange);
  background: var(--color-light-gray);
  border: 1px solid var(--home-panel-border);
  padding: 9px 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.page-home .home-section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--home-deep-blue);
}

.page-home .home-section-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
}

.page-home .home-section-head--invert h2 {
  color: #ffffff;
}

.page-home .home-section-head--invert p {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-section-head--invert .home-section-head__index {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--home-orange);
}

.page-home .home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-deep-blue);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

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

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

.page-home .home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(112deg, rgba(10, 37, 64, 0.97) 18%, rgba(10, 37, 64, 0.85) 48%, rgba(10, 37, 64, 0.45) 100%);
}

.page-home .home-hero__diagonal {
  position: absolute;
  right: -22%;
  top: -12%;
  width: 56%;
  height: 130%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.16), transparent 72%);
  transform: skewX(-16deg);
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-block: 112px 72px;
}

.page-home .home-hero__content {
  max-width: 680px;
}

.page-home .home-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin: 20px 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .home-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--home-orange);
  flex-shrink: 0;
}

.page-home .home-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 9vw, 96px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.page-home .home-hero__lead {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 16px;
}

.page-home .home-hero__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--home-text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

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

.page-home .home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 28px;
}

.page-home .home-hero__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-hero__fact-num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--home-orange);
}

.page-home .home-hero__fact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.page-home .home-schedule {
  background: var(--color-white);
  padding-block: 72px 96px;
}

.page-home .home-schedule__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.page-home .home-schedule__item {
  background: var(--color-white);
  border: 1px solid var(--home-panel-border);
  border-left: 4px solid var(--home-deep-blue);
  margin-bottom: 12px;
  transition: border-color var(--transition-fast);
}

.page-home .home-schedule__item:hover {
  border-left-color: var(--home-orange);
  border-color: var(--home-orange);
}

.page-home .home-schedule__trigger {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.page-home .home-schedule__day {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-orange);
  background: rgba(255, 107, 0, 0.08);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.page-home .home-schedule__match {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--home-deep-blue);
  flex: 1 1 260px;
}

.page-home .home-schedule__match em {
  font-style: normal;
  color: var(--home-orange);
  font-weight: 800;
  margin: 0 6px;
}

.page-home .home-schedule__time {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--home-deep-blue);
}

.page-home .home-schedule__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 16px 20px;
}

.page-home .home-schedule__info span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-dark-gray);
  background: var(--color-light-gray);
  padding: 5px 10px;
  border-radius: 2px;
}

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

.page-home .home-schedule__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid var(--home-panel-border);
}

.page-home .home-schedule__caption {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-mid-gray);
  border-bottom: 2px solid var(--home-orange);
  padding-bottom: 4px;
}

.page-home .home-schedule__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.page-home .home-schedule__footer span {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--color-mid-gray);
}

.page-home .home-teams {
  background: var(--color-light-gray);
  padding-block: 72px;
}

.page-home .home-teams__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .home-teams__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid var(--home-panel-border);
  background: #ffffff;
  box-shadow: 0 0 0 8px #ffffff;
}

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

.page-home .home-teams__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-dark-gray);
  margin-bottom: 24px;
}

.page-home .home-teams__points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.page-home .home-teams__points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
}

.page-home .home-teams__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--home-orange);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .home-update {
  background: var(--home-deep-blue);
  color: #ffffff;
  padding-block: 88px 96px;
  position: relative;
  overflow: hidden;
}

.page-home .home-update::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 44%;
  height: 90%;
  background: rgba(255, 107, 0, 0.08);
  transform: skewX(-18deg);
  pointer-events: none;
}

.page-home .home-update__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  position: relative;
}

.page-home .home-update__clock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--home-orange);
  padding-left: 20px;
}

.page-home .home-update__label {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.page-home .home-update__time {
  font-family: var(--font-mono);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  color: var(--home-orange);
  letter-spacing: -0.03em;
}

.page-home .home-update__zone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
  margin-top: 10px;
}

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

.page-home .home-update__steps {
  display: grid;
  gap: 0;
  margin-top: 28px;
  margin-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .home-update__step {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .home-update__step span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--home-orange);
  width: 68px;
  flex-shrink: 0;
}

.page-home .home-update__step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .home-support {
  background: var(--color-white);
  padding-block: 72px;
}

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

.page-home .home-support__card {
  border: 1px solid var(--home-panel-border);
  background: var(--color-white);
  padding: 32px;
  position: relative;
}

.page-home .home-support__card--repair {
  border-top: 4px solid var(--home-orange);
}

.page-home .home-support__card--help {
  border-top: 4px solid var(--home-deep-blue);
}

.page-home .home-support__card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--home-deep-blue);
  margin: 16px 0 12px;
}

.page-home .home-support__card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark-gray);
  margin-bottom: 20px;
}

.page-home .home-support__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.1);
  color: #b34700;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 15px;
  margin-bottom: 16px;
}

.page-home .home-support__status svg {
  color: var(--home-orange);
}

.page-home .home-support__status strong {
  font-weight: 800;
  color: var(--home-orange);
}

.page-home .home-support__link {
  display: inline-block;
  color: var(--home-deep-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--home-orange);
  padding-bottom: 2px;
  font-size: 15px;
  transition: color var(--transition-fast);
}

.page-home .home-support__link:hover {
  color: var(--home-orange);
}

.page-home .home-feedback {
  background: var(--home-soft-blue);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

.page-home .home-feedback::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -8%;
  width: 30%;
  height: 60%;
  background: rgba(255, 107, 0, 0.06);
  transform: skewX(-14deg);
  pointer-events: none;
}

.page-home .home-feedback__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.page-home .home-feedback__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--home-deep-blue);
  margin: 16px 0 12px;
}

.page-home .home-feedback__content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-dark-gray);
  margin-bottom: 24px;
  max-width: 540px;
}

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

.page-home .home-feedback__link {
  color: var(--home-deep-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--home-orange);
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.page-home .home-feedback__link:hover {
  color: var(--home-orange);
}

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

.page-home .home-feedback__media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-inline: auto;
  border-radius: 14px;
  border: 1px solid var(--home-panel-border);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.16);
}

.page-home .home-feedback__badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--home-orange);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
  z-index: 2;
}

.page-home .home-trust {
  margin-top: 56px;
  background: var(--home-deep-blue);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 32px;
  border-left: 6px solid var(--home-orange);
}

.page-home .home-trust p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .page-home .home-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }

  .page-home .home-hero__content {
    max-width: 680px;
  }

  .page-home .home-hero__facts {
    max-width: 320px;
    grid-template-columns: 1fr;
    gap: 20px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 0;
    padding-left: 28px;
    margin-top: 0;
  }

  .page-home .home-schedule__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
  }

  .page-home .home-schedule__media {
    margin-top: 28px;
  }

  .page-home .home-teams__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }

  .page-home .home-teams__media img {
    box-shadow: 14px 14px 0 var(--home-deep-blue);
  }

  .page-home .home-update__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

  .page-home .home-support__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-home .home-support__card--help {
    margin-top: 24px;
  }

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

  .page-home .home-feedback__media img {
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: 92vh;
  }

  .page-home .home-hero__desc {
    font-size: 18px;
  }

  .page-home .home-schedule__grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 64px;
  }

  .page-home .home-feedback__media img {
    max-width: 340px;
  }

  .page-home .home-trust {
    padding: 32px 40px;
  }
}
