.page-home {
  --p-section: clamp(48px, 8vw, 96px);
  --p-gold: rgba(255, 215, 0, 0.45);
  --p-orange: rgba(255, 107, 26, 0.5);
  background: var(--color-bg);
  color: var(--color-text);
}

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

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 80px) 0 clamp(28px, 4vw, 48px);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -60px;
  width: 62%;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 26, 0.22));
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

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

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 60, 0.74) 0%, rgba(10, 30, 60, 0.46) 50%, var(--color-bg) 100%);
}

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

.page-home .home-hero__lines {
  position: absolute;
  right: 0;
  bottom: 18%;
  width: 100%;
  height: 220px;
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero__lines path {
  fill: none;
  stroke: var(--p-gold);
  stroke-width: 2;
  opacity: 0.6;
}

.page-home .home-hero__lines path:nth-child(2) {
  stroke: var(--color-primary);
  stroke-width: 4;
  opacity: 0.35;
  transform: translateY(-18px);
}

.page-home .home-hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(16px, 4vw, 40px);
}

.page-home .home-hero__title {
  margin: 12px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

.page-home .home-hero__title-brand {
  display: block;
  color: var(--color-gold);
}

.page-home .home-hero__title-sub {
  display: block;
  color: var(--color-text);
}

.page-home .home-hero__desc {
  max-width: 64ch;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(230, 233, 240, 0.86);
}

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

.page-home .home-hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(32px, 6vw, 64px);
}

.page-home .home-stat {
  padding: 14px 12px;
  background: var(--color-glass);
  border-left: 3px solid var(--color-primary);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.page-home .home-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--color-primary);
}

.page-home .home-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.page-home .home-section-head {
  margin-bottom: 28px;
  max-width: 70ch;
}

.page-home .home-section-head .eyebrow {
  margin-bottom: 8px;
}

.page-home .home-section-title {
  margin: 4px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.06;
  color: var(--color-text);
}

.page-home .home-entry {
  padding: var(--p-section) 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.page-home .home-entry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.page-home .home-entry-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.page-home .home-entry-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

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

.page-home .home-entry-card__body--plain {
  min-height: 240px;
}

.page-home .home-entry-card__title {
  font-size: 1.32rem;
  font-weight: 700;
  margin: 8px 0 10px;
  color: var(--color-text);
}

.page-home .home-entry-card__body p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.page-home .home-entry-card__link {
  margin-top: auto;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.page-home .home-entry-card__link:hover {
  color: var(--color-primary);
}

.page-home .home-round {
  padding: var(--p-section) 0;
  position: relative;
}

.page-home .home-round::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

.page-home .home-round .container {
  padding-top: clamp(28px, 4vw, 48px);
}

.page-home .home-round__grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.page-home .home-round__main {
  padding: 12px;
  overflow: hidden;
}

.page-home .home-round__chart {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.page-home .home-round__side {
  display: grid;
  gap: 16px;
}

.page-home .home-round__item {
  padding: 22px;
  background: var(--color-glass);
  border-left: 4px solid var(--color-primary);
}

.page-home .home-round__item:nth-child(2) {
  border-left-color: var(--color-gold);
}

.page-home .home-round__name {
  margin: 6px 0 8px;
  font-size: 1.25rem;
  color: var(--color-text);
}

.page-home .home-round__item p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-home .home-round__link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.page-home .home-round__link:hover {
  color: var(--color-primary);
}

.page-home .home-update {
  padding: var(--p-section) 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.page-home .home-update__item {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: var(--color-glass);
  border-top: 2px solid rgba(255, 215, 0, 0.35);
}

.page-home .home-update__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.page-home .home-update__title {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  color: var(--color-text);
}

.page-home .home-update__item p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.page-home .home-update__banner {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--color-glass);
}

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

.page-home .home-update__banner-body {
  padding: 24px;
  background: var(--gradient-hero);
}

.page-home .home-update__banner-body h3 {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-home .home-update__banner-body p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-home .home-update__link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.page-home .home-update__link:hover {
  color: var(--color-primary);
}

.page-home .home-guide {
  padding: var(--p-section) 0 calc(var(--p-section) + 24px);
  text-align: center;
}

.page-home .home-guide .lead {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-guide__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding-top: clamp(48px, 8vw, 96px);
  }

  .page-home .home-hero__title {
    font-size: clamp(4rem, 10vw, 7.5rem);
  }

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

  .page-home .home-entry-card__img {
    height: 200px;
  }

  .page-home .home-round__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

  .page-home .home-update__banner {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .page-home .home-update__img {
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__stats {
    gap: 20px;
  }

  .page-home .home-stat {
    padding: 20px 24px;
  }

  .page-home .home-entry-card__body {
    padding: 26px;
  }

  .page-home .home-update__item {
    padding: 28px;
  }

  .page-home .home-update__banner-body {
    padding: 32px;
  }
}
