.page-home{
  --home-gap:16px;
  --home-radius:18px;
  background:var(--clr-bg);
  color:var(--clr-text);
}
.page-home [id]{
  scroll-margin-top:calc(var(--header-h) + 16px);
}
.page-home .home-quick{
  position:relative;
  padding:52px 0 64px;
  overflow:hidden;
  background:var(--clr-deep-teal);
}
.page-home .home-quick__bg,
.page-home .home-quick__scrim{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.page-home .home-quick__bg{
  z-index:0;
  overflow:hidden;
}
.page-home .home-quick__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.page-home .home-quick__scrim{
  z-index:1;
  background:
    linear-gradient(115deg,rgba(61,58,107,0.55) 0%,rgba(15,59,66,0.28) 46%,rgba(26,29,36,0.7) 100%),
    linear-gradient(180deg,rgba(26,29,36,0.72) 0%,rgba(26,29,36,0.2) 44%,rgba(15,59,66,0.6) 100%);
}
.page-home .home-quick__speed{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:4px;
  z-index:3;
  background:linear-gradient(90deg,transparent,var(--clr-ice) 32%,var(--clr-orange) 68%,transparent);
  animation:page-home-flow 3.6s var(--ease) infinite alternate;
}
@keyframes page-home-flow{
  from{transform:translateX(-32%);}
  to{transform:translateX(32%);}
}
.page-home .home-quick__container{
  position:relative;
  z-index:2;
}
.page-home .home-quick__crumbs{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-data);
  font-size:12px;
  letter-spacing:0.08em;
  color:var(--clr-muted);
  margin-bottom:20px;
}
.page-home .home-quick__crumbs [aria-current="page"]{
  color:var(--clr-ice);
}
.page-home .home-quick__crumb-sep{
  opacity:0.5;
}
.page-home .home-quick__head{
  max-width:880px;
  margin-bottom:36px;
}
.page-home .home-quick__head h1{
  font-family:var(--font-head);
  font-weight:900;
  font-size:clamp(40px,7vw,64px);
  line-height:1.12;
  letter-spacing:-0.02em;
  margin:0 0 16px;
  text-wrap:balance;
}
.page-home .home-quick__lead{
  font-size:16px;
  line-height:1.8;
  font-weight:300;
  color:var(--clr-muted);
  max-width:660px;
  margin:0 0 24px;
}
.page-home .home-quick__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-home .home-bento{
  display:grid;
  grid-template-columns:1fr;
  gap:var(--home-gap);
}
.page-home .home-snapshot{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:24px;
  border-radius:var(--home-radius);
  border:1px solid var(--clr-border);
  background:linear-gradient(145deg,rgba(15,59,66,0.92),rgba(61,58,107,0.78));
  text-decoration:none;
  color:var(--clr-text);
  position:relative;
  overflow:hidden;
  transition:transform var(--speed) var(--ease),border-color var(--speed) var(--ease);
}
.page-home .home-snapshot::after{
  content:"";
  position:absolute;
  right:-44px;
  top:-44px;
  width:180px;
  height:180px;
  background:radial-gradient(circle,rgba(42,157,244,0.3),transparent 70%);
  pointer-events:none;
}
.page-home .home-snapshot:hover,
.page-home .home-snapshot:focus-visible{
  transform:translateY(-4px);
  border-color:rgba(42,157,244,0.6);
}
.page-home .home-snapshot__live{
  font-family:var(--font-data);
  font-size:12px;
  letter-spacing:0.12em;
  color:var(--clr-orange);
}
.page-home .home-snapshot__score{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
}
.page-home .home-snapshot__team{
  font-family:var(--font-head);
  font-weight:800;
  font-size:16px;
  line-height:1.4;
}
.page-home .home-snapshot__team:last-child{
  text-align:right;
}
.page-home .home-snapshot__digits{
  font-family:var(--font-data);
  font-weight:700;
  font-size:40px;
  line-height:1;
  color:var(--clr-orange);
  letter-spacing:-0.04em;
}
.page-home .home-snapshot__bar{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
  font-family:var(--font-data);
  font-size:12px;
  color:var(--clr-muted);
}
.page-home .home-snapshot__bar i{
  height:6px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--clr-ice) 0 58%,rgba(255,255,255,0.12) 58% 100%);
}
.page-home .home-snapshot__note{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:var(--clr-muted);
}
.page-home .home-entry{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:24px;
  border-radius:var(--home-radius);
  border:1px solid var(--clr-border);
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(12px);
  text-decoration:none;
  color:var(--clr-text);
  transition:transform var(--speed) var(--ease),border-color var(--speed) var(--ease),background-color var(--speed) var(--ease);
}
.page-home .home-entry:hover,
.page-home .home-entry:focus-visible{
  transform:translateY(-4px);
  border-color:rgba(42,157,244,0.6);
  background:rgba(255,255,255,0.1);
}
.page-home .home-entry__img{
  width:88px;
  height:88px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--clr-border);
  align-self:flex-start;
}
.page-home .home-entry__code{
  font-family:var(--font-data);
  font-size:12px;
  color:var(--clr-orange);
}
.page-home .home-entry h3{
  font-family:var(--font-head);
  font-weight:800;
  font-size:20px;
  line-height:1.35;
  letter-spacing:-0.01em;
  margin:0;
}
.page-home .home-entry p{
  font-size:13px;
  line-height:1.7;
  color:var(--clr-muted);
  margin:0;
}
.page-home .home-bento__ticker{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
  padding:18px 24px;
  border-radius:var(--home-radius);
  background:linear-gradient(120deg,rgba(255,90,60,0.14),rgba(42,157,244,0.1));
  border:1px dashed rgba(255,255,255,0.22);
}
.page-home .home-bento__ticker-text{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--clr-text);
}
.page-home .home-bento__dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--clr-success);
  box-shadow:0 0 0 0 rgba(76,183,130,0.5);
  animation:page-home-pulse 2s infinite;
  margin-right:8px;
}
@keyframes page-home-pulse{
  70%{box-shadow:0 0 0 8px rgba(76,183,130,0);}
  100%{box-shadow:0 0 0 0 rgba(76,183,130,0);}
}
.page-home .home-section-head{
  margin:0 0 28px;
}
.page-home .home-section-head__code{
  font-family:var(--font-data);
  font-size:12px;
  letter-spacing:0.14em;
  color:var(--clr-ice);
  margin:0 0 8px;
}
.page-home .home-section-head h2{
  font-family:var(--font-head);
  font-weight:900;
  font-size:clamp(30px,4vw,40px);
  line-height:1.2;
  letter-spacing:-0.02em;
  margin:0 0 10px;
}
.page-home .home-section-head__sub{
  font-size:14px;
  line-height:1.7;
  color:var(--clr-muted);
  margin:0;
}
.page-home .home-focus{
  padding:64px 0 24px;
  background:var(--clr-bg);
}
.page-home .home-focus__grid{
  display:grid;
  gap:16px;
}
.page-home .home-focus__main{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:14px;
  align-items:center;
  padding:26px 20px;
  border-radius:var(--home-radius);
  background:linear-gradient(150deg,rgba(15,59,66,0.9),rgba(61,58,107,0.66));
  border:1px solid var(--clr-border);
  overflow:hidden;
}
.page-home .home-focus__main::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg,var(--clr-ice),var(--clr-orange));
}
.page-home .home-focus__team{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.page-home .home-focus__team--away{
  text-align:right;
}
.page-home .home-focus__team-name{
  font-family:var(--font-head);
  font-weight:800;
  font-size:18px;
  line-height:1.4;
}
.page-home .home-focus__team-stat{
  font-family:var(--font-data);
  font-size:12px;
  color:var(--clr-muted);
  line-height:1.5;
}
.page-home .home-focus__board{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  min-width:110px;
}
.page-home .home-focus__period{
  font-family:var(--font-data);
  font-size:11px;
  color:var(--clr-warning);
  letter-spacing:0.08em;
}
.page-home .home-focus__score{
  font-family:var(--font-data);
  font-weight:700;
  font-size:44px;
  line-height:1;
  color:var(--clr-orange);
  letter-spacing:-0.04em;
}
.page-home .home-focus__update{
  font-family:var(--font-data);
  font-size:11px;
  color:var(--clr-muted);
  text-align:center;
}
.page-home .home-focus__side{
  display:grid;
  gap:12px;
}
.page-home .home-focus__match{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px 18px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--clr-border);
  border-radius:14px;
}
.page-home .home-focus__match p{
  margin:0;
  font-size:15px;
  line-height:1.6;
}
.page-home .home-focus__match b{
  font-family:var(--font-data);
  font-weight:700;
}
.page-home .home-focus__match small{
  font-family:var(--font-data);
  font-size:12px;
  color:var(--clr-muted);
}
.page-home .pill{
  display:inline-flex;
  align-items:center;
  gap:4px;
  align-self:flex-start;
  font-size:12px;
  line-height:1;
  padding:6px 10px;
  border-radius:999px;
  letter-spacing:0.03em;
}
.page-home .pill--hot{
  background:rgba(255,90,60,0.16);
  color:var(--clr-orange);
  border:1px solid rgba(255,90,60,0.32);
}
.page-home .pill--ok{
  background:rgba(76,183,130,0.14);
  color:var(--clr-success);
  border:1px solid rgba(76,183,130,0.32);
}
.page-home .pill--warn{
  background:rgba(245,196,81,0.14);
  color:var(--clr-warning);
  border:1px solid rgba(245,196,81,0.32);
}
.page-home .home-focus__note{
  margin:16px 0 0;
  padding:14px 18px;
  border-left:3px solid var(--clr-ice);
  background:rgba(42,157,244,0.08);
  border-radius:8px;
  font-size:13px;
  line-height:1.8;
  color:var(--clr-muted);
}
.page-home .home-trust{
  max-width:900px;
  margin:0 auto;
  padding:18px 28px;
  text-align:center;
  font-size:13px;
  line-height:1.8;
  color:var(--clr-muted);
  border-left:3px solid var(--clr-ice);
  border-right:3px solid var(--clr-orange);
  background:rgba(255,255,255,0.03);
  border-radius:4px;
}
.page-home .home-stats{
  position:relative;
  padding:64px 0;
  margin-top:40px;
  background:
    linear-gradient(135deg,rgba(15,59,66,0.95),rgba(26,29,36,0.92)),
    repeating-linear-gradient(45deg,rgba(255,255,255,0.02) 0 1px,transparent 1px 12px);
  border-top:1px solid var(--clr-border);
  border-bottom:1px solid var(--clr-border);
  overflow:hidden;
}
.page-home .home-stats::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--clr-ice),var(--clr-orange));
}
.page-home .home-stats__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:20px;
}
.page-home .home-stat{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  justify-content:center;
  padding:24px 16px;
  border-radius:16px;
  background:rgba(26,29,36,0.55);
  border:1px solid var(--clr-border);
  text-align:center;
}
.page-home .home-stat__num{
  font-family:var(--font-data);
  font-weight:700;
  font-size:34px;
  line-height:1;
  color:var(--clr-ice);
}
.page-home .home-stat:nth-child(even) .home-stat__num{
  color:var(--clr-orange);
}
.page-home .home-stat__label{
  font-size:13px;
  color:var(--clr-muted);
  line-height:1.5;
}
.page-home .home-stats__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 24px;
  justify-content:center;
  padding:16px 24px;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
}
.page-home .home-stats__meta span{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  line-height:1.6;
  color:var(--clr-text);
}
.page-home .home-stats__meta span::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--clr-warning);
}
.page-home .home-latest{
  padding:64px 0;
  background:var(--clr-bg);
}
.page-home .home-section-head--split{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.page-home .home-latest__grid{
  display:grid;
  gap:16px;
}
.page-home .home-article-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:24px;
  border-radius:16px;
  background:rgba(255,255,255,0.045);
  border:1px solid var(--clr-border);
  text-decoration:none;
  color:var(--clr-text);
  transition:transform var(--speed) var(--ease),background-color var(--speed) var(--ease),border-color var(--speed) var(--ease);
}
.page-home .home-article-card:hover,
.page-home .home-article-card:focus-visible{
  transform:translateY(-4px);
  background:rgba(255,255,255,0.08);
  border-color:rgba(42,157,244,0.5);
}
.page-home .home-article-card__title{
  font-family:var(--font-head);
  font-weight:800;
  font-size:19px;
  line-height:1.5;
  letter-spacing:-0.01em;
  margin:0;
}
.page-home .home-article-card__excerpt{
  font-size:13px;
  line-height:1.8;
  color:var(--clr-muted);
  margin:0;
}
.page-home .home-article-card__link{
  align-self:flex-start;
  font-family:var(--font-data);
  font-size:13px;
  color:var(--clr-ice);
}
.page-home .home-channels{
  padding:64px 0;
  background:
    radial-gradient(circle at 84% 18%,rgba(110,43,51,0.55),transparent 38%),
    radial-gradient(circle at 14% 88%,rgba(61,58,107,0.55),transparent 42%),
    var(--clr-bg);
  border-top:1px solid var(--clr-border);
}
.page-home .home-channels__grid{
  display:grid;
  gap:16px;
}
.page-home .channel-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:24px;
  border-radius:16px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--clr-border);
  text-decoration:none;
  color:var(--clr-text);
  overflow:hidden;
  transition:transform var(--speed) var(--ease),border-color var(--speed) var(--ease);
}
.page-home .channel-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:linear-gradient(90deg,var(--clr-ice),var(--clr-orange));
  transform:scaleX(0);
  transform-origin:right;
  transition:transform var(--speed) var(--ease);
}
.page-home .channel-card:hover,
.page-home .channel-card:focus-visible{
  transform:translateY(-3px);
  border-color:rgba(42,157,244,0.55);
}
.page-home .channel-card:hover::after,
.page-home .channel-card:focus-visible::after{
  transform:scaleX(1);
  transform-origin:left;
}
.page-home .channel-card__icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--clr-ice),var(--clr-orange));
  color:var(--clr-bg);
}
.page-home .channel-card h3{
  font-family:var(--font-head);
  font-weight:800;
  font-size:18px;
  letter-spacing:-0.01em;
  margin:0;
}
.page-home .channel-card p{
  font-size:13px;
  line-height:1.7;
  color:var(--clr-muted);
  margin:0;
}
@media (min-width:700px){
  .page-home .home-bento{
    grid-template-columns:repeat(12,1fr);
  }
  .page-home .home-snapshot{
    grid-column:span 8;
  }
  .page-home .home-entry--report{
    grid-column:span 4;
  }
  .page-home .home-entry--eval,
  .page-home .home-entry--season,
  .page-home .home-entry--guide{
    grid-column:span 4;
  }
  .page-home .home-bento__ticker{
    grid-column:span 12;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
  .page-home .home-focus__grid{
    grid-template-columns:1.4fr 1fr;
  }
  .page-home .home-stats__grid{
    grid-template-columns:repeat(4,1fr);
  }
  .page-home .home-latest__grid{
    grid-template-columns:repeat(3,1fr);
  }
  .page-home .home-channels__grid{
    grid-template-columns:repeat(2,1fr);
  }
  .page-home .home-section-head--split{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-end;
  }
}
@media (min-width:1080px){
  .page-home .home-quick{
    padding:72px 0 88px;
  }
  .page-home .home-snapshot{
    padding:32px;
  }
  .page-home .home-entry{
    padding:28px 26px;
  }
  .page-home .home-focus__main{
    padding:34px 28px;
  }
  .page-home .home-channels__grid{
    grid-template-columns:repeat(4,1fr);
  }
}
@media (prefers-reduced-motion:reduce){
  .page-home .home-quick__speed,
  .page-home .home-bento__dot{
    animation:none;
  }
}
