.page-home {
  --page-hero-line: linear-gradient(135deg, rgba(201,169,97,0) 0%, rgba(201,169,97,.8) 50%, rgba(201,169,97,0) 100%);
  --page-red-accent: #e63946;
  background:
    radial-gradient(circle at 85% 10%, rgba(201,169,97,.08), transparent 34%),
    linear-gradient(rgba(201,169,97,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,.02) 1px, transparent 1px),
    var(--c-black);
  background-size: auto, 48px 48px, 48px 48px, auto;
  color: var(--c-cream);
  line-height: var(--lh-body);
}

.page-home__crumb {
  padding-top: 20px;
}

.page-home .breadcrumbs {
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--c-silver);
}

.page-home__hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin-top: 20px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  background: var(--c-dark);
}

.page-home__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
}

.page-home__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.2) 0%, rgba(10,10,10,.58) 58%, rgba(10,10,10,.92) 100%);
}

.page-home__hero-lines {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  width: calc(100% - 48px);
  height: 46px;
  pointer-events: none;
  opacity: .7;
}

.page-home__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 36px 24px 46px;
}

.page-home .hero-frame__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--c-silver);
}

.page-home__hero-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--c-gold-bright);
}

.page-home__hero-code::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--c-gold);
}

.page-home__hero-title {
  margin: 0 0 16px;
  font-family: var(--ff-head);
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: .04em;
  color: var(--c-cream);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(201,169,97,.28);
}

.page-home__hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .02em;
  color: rgba(241,232,211,.82);
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home__hero-actions .btn-primary,
.page-home__dl-body .btn-primary {
  position: relative;
  overflow: hidden;
}

.page-home__hero-actions .btn-primary::after,
.page-home__dl-body .btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(230,200,140,.42), transparent);
  transform: skewX(-20deg);
  transition: left .72s ease-in-out;
  pointer-events: none;
}

.page-home__hero-actions .btn-primary:hover::after,
.page-home__hero-actions .btn-primary:focus-visible::after,
.page-home__dl-body .btn-primary:hover::after,
.page-home__dl-body .btn-primary:focus-visible::after {
  left: 130%;
}

.page-home__core {
  padding: 56px 0 8px;
}

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

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.page-home .section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}

.page-home .section-title {
  margin: 10px 0 0;
  font-family: var(--ff-head);
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.15;
  letter-spacing: .04em;
  color: var(--c-cream);
}

.page-home .section-sub {
  margin: 10px 0 0;
  max-width: 640px;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--c-silver);
}

.page-home__core-grid {
  gap: 20px;
}

.page-home .panel {
  position: relative;
  height: 100%;
  padding: 26px 24px 28px;
  background: linear-gradient(135deg, rgba(26,26,26,.95), rgba(10,10,10,.9));
  border: 1px solid rgba(192,192,192,.14);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.page-home .panel--gold {
  border-color: rgba(201,169,97,.5);
  background: linear-gradient(135deg, rgba(28,25,18,.98), rgba(10,10,10,.96));
  box-shadow: 0 0 34px rgba(201,169,97,.08);
}

.page-home .panel__title {
  margin: 14px 0 10px;
  font-family: var(--ff-head);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: .02em;
  color: var(--c-cream);
}

.page-home .panel__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(241,232,211,.78);
}

.page-home .panel .badge {
  margin-bottom: 14px;
}

.page-home .panel .list-ticks {
  margin: 0 0 22px;
}

.page-home__download {
  padding: 56px 0 8px;
  scroll-margin-top: 20px;
}

.page-home__dl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home__dl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 24px 30px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(201,169,97,.26);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: border-color .3s ease;
}

.page-home__dl-card:hover {
  border-color: rgba(201,169,97,.6);
}

.page-home__dl-card--desktop {
  border-color: rgba(192,192,192,.2);
}

.page-home__dl-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201,169,97,.32));
}

.page-home__dl-svg {
  width: 90px;
  height: 90px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,169,97,.35));
}

.page-home__dl-body {
  text-align: center;
}

.page-home__dl-title {
  margin: 0 0 8px;
  font-family: var(--ff-head);
  font-size: 19px;
  letter-spacing: .03em;
  color: var(--c-cream);
}

.page-home__dl-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(241,232,211,.76);
}

.page-home__tutorial {
  padding: 56px 0 16px;
}

.page-home__tutorial-grid {
  gap: 20px;
}

.page-home .card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #151515;
  border: 1px solid rgba(192,192,192,.12);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.page-home .card:hover {
  border-color: rgba(201,169,97,.58);
  background: #191919;
  transform: translateY(-3px);
}

.page-home .card--feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-gold);
}

.page-home .card__media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.page-home .card__title {
  margin: 0 0 8px;
  font-family: var(--ff-head);
  font-size: 17px;
  letter-spacing: .02em;
  color: var(--c-cream);
  transition: color .25s ease;
}

.page-home .card:hover .card__title {
  color: var(--c-gold-bright);
}

.page-home .card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241,232,211,.74);
}

.page-home .card .btn {
  margin-top: auto;
}

.page-home__card--feedback::before {
  background: var(--c-red);
}

.page-home__timeline {
  position: relative;
  margin-top: 48px;
  padding: 56px 0 44px;
  background:
    linear-gradient(180deg, rgba(26,26,26,.88), rgba(10,10,10,.94)),
    var(--c-black);
  border-top: 1px solid rgba(201,169,97,.22);
  border-bottom: 1px solid rgba(201,169,97,.22);
}

.page-home__timeline-track {
  position: relative;
  margin-top: 34px;
  padding: 0 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,97,.6) transparent;
}

.page-home__timeline-list {
  position: relative;
  display: flex;
  gap: 12px;
  min-width: 760px;
  margin: 0;
  padding: 0 0 8px;
  list-style: none;
}

.page-home__timeline-list::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,.8) 12%, rgba(201,169,97,.8) 88%, transparent);
}

.page-home__timeline-item {
  position: relative;
  flex: 1 1 0;
  min-width: 104px;
  padding-top: 32px;
}

.page-home__timeline-node {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-black);
  border: 2px solid var(--c-gold);
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.page-home__timeline-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  transform: translate(-50%, -50%);
  transition: background .25s ease;
}

.page-home__timeline-node:hover,
.page-home__timeline-node:focus-visible {
  background: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(201,169,97,.22), 0 0 18px rgba(201,169,97,.5);
  outline: none;
  transform: translateX(-50%) scale(1.12);
}

.page-home__timeline-node:hover::after,
.page-home__timeline-node:focus-visible::after {
  background: var(--c-black);
}

.page-home__timeline-card {
  height: 100%;
  padding: 14px 12px 16px;
  background: #161616;
  border: 1px solid rgba(192,192,192,.14);
  transition: border-color .25s ease, background .25s ease;
}

.page-home__timeline-item:hover .page-home__timeline-card,
.page-home__timeline-item:focus-within .page-home__timeline-card {
  border-color: var(--c-gold);
  background: #1c1a16;
}

.page-home__timeline-title {
  margin: 0 0 6px;
  font-family: var(--ff-head);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--c-cream);
}

.page-home__timeline-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(241,232,211,.66);
}

.page-home__timeline-item--hot .page-home__timeline-node {
  background: var(--c-red);
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(230,57,70,.2);
}

.page-home__timeline-item--hot .page-home__timeline-node::after {
  background: var(--c-red);
}

.page-home__timeline-item--hot .page-home__timeline-card {
  border-color: rgba(230,57,70,.4);
  background: linear-gradient(135deg, rgba(20,12,12,.9), rgba(10,10,10,.95));
}

.page-home__timeline-bg {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto 0;
  object-fit: cover;
  opacity: .42;
  border: 1px solid rgba(201,169,97,.14);
}

.page-home__timeline-cta {
  margin-top: 20px;
  text-align: center;
}

.page-home__stats {
  padding: 28px 0 8px;
}

.page-home__stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home__stat {
  padding: 22px 18px;
  text-align: center;
  background: #161616;
  border: 1px solid rgba(201,169,97,.2);
  border-left: 3px solid var(--c-gold);
}

.page-home__stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: .04em;
  color: var(--c-cream);
}

.page-home__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--c-silver);
}

.page-home__connect {
  padding: 44px 0 60px;
}

.page-home__connect-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 26px 32px;
  background: linear-gradient(135deg, rgba(201,169,97,.1), rgba(10,10,10,.92) 62%);
  border: 1px solid rgba(201,169,97,.36);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.page-home__connect-title {
  margin: 8px 0 6px;
  font-family: var(--ff-head);
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--c-cream);
}

.page-home__connect-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(241,232,211,.78);
}

@media (min-width: 768px) {
  .page-home__hero {
    min-height: 620px;
    margin-top: 28px;
  }

  .page-home__hero-inner {
    padding: 48px 56px 52px;
  }

  .page-home__hero-title {
    font-size: clamp(40px, 5.4vw, 66px);
  }

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

  .page-home__stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home__connect-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 44px;
  }

  .page-home__connect-inner > div {
    max-width: 640px;
  }
}
