.page-home {
  --home-gap: clamp(20px, 3vw, 40px);
  --home-section-space: clamp(64px, 9vw, 112px);
  --home-radius-xl: 30px;
}

.page-home .home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--gradient-sport);
}

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

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

.page-home .home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.94) 20%, rgba(19, 34, 51, 0.72) 55%, rgba(27, 46, 79, 0.45) 100%),
    linear-gradient(30deg, transparent 60%, rgba(212, 175, 55, 0.12) 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 3px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.55) 35%, rgba(230, 57, 70, 0.4) 70%, transparent);
  transform: skewX(-18deg);
  display: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 0;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 40%, transparent 90%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 72px;
  padding-bottom: 92px;
}

.page-home .home-hero__badge {
  margin-bottom: 18px;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.2vw, 52px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-white);
  margin: 0 0 18px;
}

.page-home .home-hero__title-brand,
.page-home .home-hero__title-plus,
.page-home .home-hero__title-ver {
  display: block;
}

.page-home .home-hero__title-sep {
  display: inline;
  font-style: normal;
  color: var(--color-gold);
  margin: 0 6px;
  font-weight: 400;
}

.page-home .home-hero__title-ver {
  color: var(--color-gold-light);
}

.page-home .home-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 560px;
  margin: 0 0 28px;
}

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

.page-home .home-hero__panel {
  display: flex;
  justify-content: flex-start;
}

.page-home .home-hero__version {
  position: relative;
  flex: 0 1 auto;
  background: rgba(10, 22, 40, 0.66);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: rotate(2deg);
  backdrop-filter: blur(8px);
}

.page-home .home-hero__version::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gradient-gold);
}

.page-home .home-hero__version-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.page-home .home-hero__version-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.page-home .home-hero__version-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 96px);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-hero__version-plus {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-white);
  background: rgba(212, 175, 55, 0.14);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

.page-home .home-hero__version-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.page-home .home-hero__scrolldown {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.page-home .home-hero__scrolldown span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--color-gold);
}

.page-home .home-steps {
  background: var(--color-off-white);
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
  color: var(--color-bg);
}

.page-home .home-steps .section-head__title,
.page-home .home-entry .section-head__title {
  color: var(--color-bg);
}

.page-home .home-steps .section-head__desc,
.page-home .home-entry .section-head__desc {
  color: #44556a;
}

.page-home .home-steps .section-head__eyebrow,
.page-home .home-entry .section-head__eyebrow {
  color: var(--color-red);
}

.page-home .home-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.page-home .home-steps__step {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-steps__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-gold);
}

.page-home .home-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 14px;
}

.page-home .home-steps__step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-bg);
  margin: 0 0 8px;
}

.page-home .home-steps__step p {
  margin: 0;
  line-height: 1.65;
  color: #485668;
}

.page-home .home-steps__arrow {
  text-align: center;
  font-size: 24px;
  color: var(--color-gold);
  font-weight: 900;
  line-height: 1;
  transform: rotate(90deg);
}

.page-home .home-matrix {
  background: var(--gradient-sport);
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

.page-home .home-matrix .section-head__title,
.page-home .home-updates .section-head__title,
.page-home .home-trust .section-head__title {
  color: var(--color-white);
}

.page-home .home-matrix .section-head__desc,
.page-home .home-updates .section-head__desc,
.page-home .home-trust .section-head__desc {
  color: var(--color-text-muted);
}

.page-home .home-matrix .bento-grid {
  gap: var(--home-gap);
  margin-top: 48px;
}

.page-home .home-matrix__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-matrix__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .home-matrix__card--rules {
  justify-content: center;
  gap: 14px;
  padding: clamp(26px, 3.4vw, 44px);
  background:
    radial-gradient(circle at 85% 10%, rgba(212, 175, 55, 0.18), transparent 48%),
    var(--color-bg-light);
}

.page-home .home-matrix__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .home-matrix__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.page-home .home-matrix__status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.page-home .home-matrix__rule-link {
  margin-top: 6px;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
}

.page-home .home-matrix__rule-link:hover {
  color: var(--color-gold-light);
}

.page-home .home-matrix__thumb {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.page-home .home-matrix__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  padding: 20px 22px 26px;
}

.page-home .home-matrix__card--media .card__text {
  margin-bottom: 4px;
}

.page-home .home-matrix__card--case {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.page-home .home-matrix__case-media {
  position: relative;
  width: 100%;
  min-height: 220px;
}

.page-home .home-matrix__case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-matrix__case-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
  padding: clamp(22px, 3vw, 36px);
}

.page-home .home-entry {
  background: var(--color-off-white);
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
  color: var(--color-bg);
}

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

.page-home .home-entry__desc {
  margin: 14px 0 0;
  line-height: 1.7;
  color: #44556a;
  max-width: 560px;
}

.page-home .home-entry__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.page-home .home-entry__stat {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  min-width: 130px;
  box-shadow: var(--shadow-sm);
}

.page-home .home-entry__stat .stat__number {
  display: block;
}

.page-home .home-entry__stat .stat__label {
  display: block;
  margin-top: 4px;
  color: #485668;
  font-size: 14px;
}

.page-home .home-entry__visual {
  display: flex;
  justify-content: center;
}

.page-home .home-entry__orbit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(320px, 74vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(212, 175, 55, 0.2), transparent 60%),
    var(--color-white);
  box-shadow: var(--shadow-md);
}

.page-home .home-entry__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.6);
}

.page-home .home-entry__ring--2 {
  inset: 10%;
  border-style: solid;
  border-color: rgba(230, 57, 70, 0.35);
}

.page-home .home-entry__orbit-dot {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
}

.page-home .home-entry__year {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-entry__orbit-label {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-bg-light);
}

.page-home .home-updates {
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

.page-home .home-updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin-top: 48px;
}

.page-home .home-updates .news-card {
  height: 100%;
  background: var(--color-bg-light);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-updates .news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .home-updates__more {
  margin-top: 40px;
  text-align: center;
}

.page-home .home-trust {
  position: relative;
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 40%),
    var(--gradient-sport);
  border-top: 1px solid var(--color-border);
}

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

.page-home .home-trust__lead {
  margin: 14px 0 24px;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 560px;
}

.page-home .home-trust__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

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

.page-home .home-trust__card {
  padding: 28px;
  background: var(--color-bg-light);
}

.page-home .home-trust__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--color-white);
}

.page-home .home-trust__contact-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--color-text);
}

.page-home .home-trust__contact-list li {
  display: grid;
  gap: 2px;
  line-height: 1.6;
}

.page-home .home-trust__contact-label {
  font-size: 13px;
  color: var(--color-text-muted);
}

.page-home .home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-home .home-dots__link {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .home-dots__link:hover,
.page-home .home-dots__link[aria-current="true"] {
  background: var(--color-gold);
  transform: scale(1.2);
}

.page-home .home-dots__tooltip {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-light);
  color: var(--color-text);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .home-dots__link:hover .home-dots__tooltip,
.page-home .home-dots__link[aria-current="true"] .home-dots__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (min-width: 760px) {
  .page-home .home-hero::before {
    display: block;
  }

  .page-home .home-steps__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
  }

  .page-home .home-steps__arrow {
    transform: none;
  }

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

@media (min-width: 860px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 32px;
  }

  .page-home .home-hero__panel {
    justify-content: flex-end;
  }

  .page-home .home-entry__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-home .home-trust__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-home .home-matrix__card--case {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-matrix__case-body {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-dots {
    display: flex;
  }
}
