.page-home{
  --home-pad: clamp(20px, 4vw, 48px);
  background:
    radial-gradient(circle at 12% 78%, rgba(230,57,70,0.10), transparent 26%),
    radial-gradient(circle at 88% 30%, rgba(69,123,157,0.14), transparent 30%),
    var(--blue-black);
  color: var(--white);
}
.page-home img{
  max-width: 100%;
  height: auto;
}
.page-home a:focus-visible,
.page-home button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.page-home .home-cover{
  position: relative;
}
.page-home .home-cover-grid{
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--container-max);
  margin-inline: auto;
}
.page-home .home-brand-panel{
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: var(--home-pad);
  color: var(--light);
  background:
    radial-gradient(circle at 78% 18%, rgba(201,162,39,0.22), transparent 30%),
    linear-gradient(128deg, var(--red) 0%, var(--red-dark) 56%, #6d0914 100%);
}
.page-home .home-brand-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  filter: saturate(0.4) contrast(1.1);
}
.page-home .home-brand-inner{
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-home .home-context{
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.34);
  padding-bottom: 14px;
  margin: 0 0 32px;
}
.page-home .home-brand-panel h1{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  color: var(--light);
}
.page-home .home-h1-sep{
  color: rgba(255,255,255,0.72);
  margin-inline: 0.15em;
}
.page-home .home-h1-verified{
  display: block;
  font-family: var(--font-data);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}
.page-home .home-lead{
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  max-width: 46ch;
  color: rgba(255,255,255,0.94);
  margin: 0 0 28px;
}
.page-home .home-topic-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-topic-chip{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.40);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: var(--light);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.page-home .home-topic-chip:hover,
.page-home .home-topic-chip:focus-visible{
  background: rgba(255,255,255,0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.page-home .home-snapshot{
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.30);
}
.page-home .home-snapshot-item strong{
  display: block;
  font-family: var(--font-data);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--light);
}
.page-home .home-snapshot-item em{
  font-style: normal;
  font-size: 0.5em;
  color: var(--gold);
  margin-left: 2px;
}
.page-home .home-snapshot-item span{
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.76);
}
.page-home .home-index-panel{
  position: relative;
  padding: var(--home-pad);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16,42,60,0.82), rgba(16,42,60,0.72)),
    repeating-linear-gradient(-55deg, rgba(197,222,255,0.05) 0 2px, transparent 2px 14px);
  border-top: 4px solid var(--red);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.page-home .home-ticker-block{
  margin-bottom: 46px;
}
.page-home .home-block-head{
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.page-home .home-num{
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
}
.page-home .home-block-head h2{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--white);
}
.page-home .home-block-desc{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  margin: 0 0 16px;
}
.page-home .home-ticker{
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(11,29,46,0.30);
  border: 1px solid rgba(201,162,39,0.20);
  border-inline: none;
}
.page-home .home-ticker::-webkit-scrollbar{
  display: none;
}
.page-home .home-ticker-track{
  display: flex;
  width: max-content;
  animation: homeTickerScroll 52s linear infinite;
}
.page-home .home-ticker:hover .home-ticker-track,
.page-home .home-ticker[data-paused] .home-ticker-track{
  animation-play-state: paused;
}
.page-home .home-ticker .ticker-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  white-space: nowrap;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--white);
  border-right: 1px solid rgba(201,162,39,0.18);
}
.page-home .home-ticker .ticker-item::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.18);
}
.page-home .home-ticker .ticker-item:nth-child(3n+1)::before{
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
@keyframes homeTickerScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.page-home .home-ticker-cta{
  margin-top: 18px;
}
.page-home .home-searchpath{
  margin-bottom: 46px;
}
.page-home .home-path-steps{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.page-home .home-path-steps li{
  background: rgba(11,29,46,0.55);
  border: 1px solid rgba(167,182,197,0.28);
  border-radius: var(--radius);
  padding: 14px 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-home .home-path-steps li:hover,
.page-home .home-path-steps li:focus-within{
  border-color: var(--red);
  transform: translateY(-2px);
}
.page-home .home-path-step-num{
  display: block;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-home .home-path-steps strong{
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.page-home .home-path-steps em{
  font-style: normal;
  font-size: 12px;
  color: var(--steel);
}
.page-home .home-path-img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(69,123,157,0.55);
  border-radius: var(--radius);
  background: var(--blue);
}
.page-home .home-chapters{
  margin-top: 46px;
}
.page-home .home-chapter-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(167,182,197,0.22);
}
.page-home .home-chapter-item{
  border-bottom: 1px solid rgba(167,182,197,0.22);
}
.page-home .home-chapter-item a{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: baseline;
  padding: 14px 4px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.page-home .home-chapter-item a:hover,
.page-home .home-chapter-item a:focus-visible{
  background: rgba(230,57,70,0.13);
  padding-left: 10px;
}
.page-home .home-chapter-num{
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
}
.page-home .home-chapter-title{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.page-home .home-chapter-meta{
  font-size: 12px;
  line-height: 1.5;
  color: var(--steel);
}
.page-home .home-cards{
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 4vw, 48px) 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.page-home .home-card{
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(29,53,87,0.94), rgba(11,29,46,0.98));
  border: 1px solid rgba(167,182,197,0.22);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-home .home-card:hover{
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}
.page-home .home-card--news{
  background:
    repeating-linear-gradient(-55deg, rgba(197,222,255,0.04) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, rgba(29,53,87,0.94), rgba(11,29,46,0.98));
}
.page-home .home-card-media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.page-home .home-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-card-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 26px;
}
.page-home .home-card-num{
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-home .home-card-body h2{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--white);
  margin: 0 0 12px;
}
.page-home .home-card-desc{
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
  margin: 0 0 16px;
}
.page-home .home-card .btn{
  margin-top: auto;
  align-self: flex-start;
}
.page-home .home-library{
  margin: 0 0 18px;
}
.page-home .home-library-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.page-home .home-filter-btn{
  appearance: none;
  border: 1px solid rgba(167,182,197,0.50);
  background: transparent;
  color: var(--white);
  padding: 6px 12px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.page-home .home-filter-btn:hover,
.page-home .home-filter-btn:focus-visible{
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.08);
}
.page-home .home-library-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-library-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 10px 12px;
  background: rgba(11,29,46,0.55);
  border-left: 2px solid var(--blue-light);
  color: var(--white);
}
.page-home .home-library-item::before{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  flex: none;
}
.page-home .home-library-item[data-filter-item="2025"]{
  border-left-color: var(--gold);
}
.page-home .home-library-item[data-filter-item="2025"]::before{
  background: var(--gold);
}
.page-home .home-migrate-steps{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-migrate-steps li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
}
.page-home .home-migrate-steps li span{
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(201,162,39,0.30);
  border-radius: 50%;
  background: rgba(201,162,39,0.13);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
}
.page-home .home-news-list{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.page-home .home-news-list a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--white);
  background: rgba(11,29,46,0.45);
  border: 1px solid rgba(167,182,197,0.18);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-home .home-news-list a::after{
  content: "→";
  margin-left: auto;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.page-home .home-news-list a:hover,
.page-home .home-news-list a:focus-visible{
  border-color: var(--blue-light);
  background: rgba(69,123,157,0.15);
}
.page-home .home-news-list a:hover::after,
.page-home .home-news-list a:focus-visible::after{
  opacity: 1;
}
@media (min-width: 960px){
  .page-home .home-cover-grid{
    grid-template-columns: 4fr 8fr;
  }
  .page-home .home-brand-panel{
    min-height: 640px;
    align-items: center;
  }
  .page-home .home-index-panel{
    border-top: none;
    border-left: 4px solid var(--red);
  }
  .page-home .home-chapter-item a{
    grid-template-columns: 48px 1fr auto;
    align-items: baseline;
  }
  .page-home .home-chapter-num{
    grid-row: auto;
  }
  .page-home .home-chapter-meta{
    text-align: right;
  }
  .page-home .home-cards{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }
  .page-home .home-card--migrate{
    margin-top: 36px;
  }
  .page-home .home-card--news{
    margin-top: 72px;
  }
  .page-home .home-card-media{
    aspect-ratio: 16 / 9;
  }
}
@media (prefers-reduced-motion: reduce){
  .page-home .home-ticker-track{
    animation: none;
  }
  .page-home .home-topic-chip:hover,
  .page-home .home-card:hover,
  .page-home .home-path-steps li:hover{
    transform: none;
  }
}
