.page-home{
  --home-hero-min-h:560px;
  --home-tick-h:6px;
  --home-tick-gap:8px;
  --home-slice:-3deg;
  --home-reco-bg:linear-gradient(135deg,rgba(57,255,20,0.12),rgba(0,229,255,0.05) 55%,transparent 80%);
  --home-help-bg:linear-gradient(180deg,rgba(0,229,255,0.07),rgba(57,255,20,0.05));
}

.page-home .home-hero{
  padding:24px 16px 0;
}

.page-home .home-hero__window{
  position:relative;
  min-height:var(--home-hero-min-h);
  border:1px solid var(--border-line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--bg-panel);
  isolation:isolate;
  display:flex;
  align-items:stretch;
}

.page-home .home-hero__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.35;
  z-index:-2;
}

.page-home .home-hero__veil{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(10,14,23,.55) 0%,rgba(10,14,23,.82) 70%);
  z-index:-1;
}

.page-home .home-hero__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  width:100%;
  min-height:var(--home-hero-min-h);
  padding:60px 24px 88px;
  box-sizing:border-box;
}

.page-home .home-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.16em;
  color:var(--muted);
  background:rgba(230,237,243,.06);
  border:1px solid var(--border-line);
  border-radius:var(--radius-pill);
  padding:6px 14px;
  margin:0 0 16px;
}

.page-home .home-hero__no{
  color:var(--green);
  font-weight:700;
}

.page-home .home-hero__title{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(36px,6vw,66px);
  line-height:1.08;
  letter-spacing:-.01em;
  color:var(--ink);
  transform:skew(var(--home-slice));
  margin:0 0 18px;
  max-width:12em;
}

.page-home .home-hero__title-gap{
  color:var(--green);
  margin:0 .12em;
}

.page-home .home-hero__slogan{
  color:var(--gold);
  font-weight:900;
}

.page-home .home-hero__lead{
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
  max-width:34em;
  margin:0 0 26px;
}

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

.page-home .home-hero__meta{
  position:absolute;
  left:24px;
  right:24px;
  bottom:20px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 22px;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.08em;
  color:var(--muted);
  border-top:1px solid var(--border-line);
  padding-top:14px;
}

.page-home .home-hero__edition{
  color:var(--blue);
}

.page-home .home-hero__coverage{
  color:var(--green);
}

.page-home .home-hero__speed{
  color:var(--gold);
}

.page-home .home-hero__ticks{
  position:absolute;
  top:22px;
  right:22px;
  left:22px;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:3;
}

.page-home .home-hero__ticks i{
  display:block;
  width:1px;
  height:var(--home-tick-h);
  background:rgba(230,237,243,.4);
}

.page-home .home-hero__corner{
  position:absolute;
  width:26px;
  height:26px;
  border-color:var(--green);
  border-style:solid;
  pointer-events:none;
  z-index:4;
  opacity:.9;
}

.page-home .home-hero__corner--tl{
  top:14px;
  left:14px;
  border-width:2px 0 0 2px;
  border-radius:8px 0 0 0;
}

.page-home .home-hero__corner--tr{
  top:14px;
  right:14px;
  border-width:2px 2px 0 0;
  border-radius:0 8px 0 0;
}

.page-home .home-hero__corner--bl{
  bottom:74px;
  left:14px;
  border-width:0 0 2px 2px;
  border-radius:0 0 0 8px;
}

.page-home .home-hero__corner--br{
  bottom:74px;
  right:14px;
  border-width:0 2px 2px 0;
  border-radius:0 0 8px 0;
}

.page-home .home-hero__window::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,transparent calc(100% - 72px),rgba(57,255,20,.3) calc(100% - 72px),transparent calc(100% - 71px)),
    linear-gradient(0deg,transparent calc(100% - 56px),rgba(0,229,255,.22) calc(100% - 56px),transparent calc(100% - 55px));
  pointer-events:none;
  z-index:2;
}

.page-home .home-focus{
  padding:56px 16px 40px;
  background:linear-gradient(180deg,transparent,rgba(0,229,255,.05) 18%,transparent 78%);
}

.page-home .home-section-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.page-home .home-section-head__kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.14em;
  color:var(--muted);
  text-transform:uppercase;
  margin:0 0 8px;
}

.page-home .home-section-head__no{
  color:var(--green);
  font-weight:700;
}

.page-home .home-section-head__title{
  font-family:var(--font-display);
  font-weight:900;
  font-size:clamp(26px,3.4vw,38px);
  line-height:1.15;
  color:var(--ink);
  transform:skew(var(--home-slice));
  margin:0;
}

.page-home .home-focus__note{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  max-width:52em;
  margin:0 0 18px;
}

.page-home .home-focus__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-bottom:28px;
}

.page-home .home-stat{
  text-align:center;
  padding:14px 8px;
  border-radius:var(--radius-md);
  background:rgba(10,14,23,.7);
}

.page-home .home-stat__num{
  display:block;
  font-family:var(--font-mono);
  font-weight:700;
  font-size:24px;
  color:var(--green);
  line-height:1.2;
}

.page-home .home-stat__label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
  line-height:1.4;
}

.page-home .home-league{
  display:flex;
  gap:8px;
  border-bottom:1px solid var(--border-line);
  margin-bottom:22px;
  overflow-x:auto;
  scrollbar-width:none;
}

.page-home .home-league::-webkit-scrollbar{
  display:none;
}

.page-home .home-league__tab{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--muted);
  font-family:var(--font-mono);
  font-size:14px;
  padding:12px 4px 12px;
  cursor:pointer;
  position:relative;
  white-space:nowrap;
}

.page-home .home-league__tab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:linear-gradient(90deg,var(--green),var(--blue));
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .25s ease;
}

.page-home .home-league__tab.is-active{
  color:var(--ink);
}

.page-home .home-league__tab.is-active::after,
.page-home .home-league__tab:hover::after{
  transform:scaleX(1);
}

.page-home .home-league__panel{
  margin-top:0;
}

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

.page-home .home-matches__title,
.page-home .home-standings__title{
  font-family:var(--font-display);
  font-weight:800;
  font-size:19px;
  color:var(--ink);
  margin:0 0 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.page-home .home-matches__title::before,
.page-home .home-standings__title::before{
  content:"";
  width:8px;
  height:8px;
  background:var(--green);
  border-radius:50%;
  box-shadow:0 0 12px var(--green);
}

.page-home .home-match{
  background:linear-gradient(90deg,rgba(57,255,20,.1),transparent 70%);
  border-left:3px solid var(--green);
  border-radius:0 var(--radius-md) var(--radius-md) 0;
  padding:14px 16px;
  margin-bottom:12px;
}

.page-home .home-match__time{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.1em;
  color:var(--blue);
  text-transform:uppercase;
  margin-bottom:6px;
}

.page-home .home-match__teams{
  font-size:17px;
  font-weight:700;
  color:var(--ink);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

.page-home .home-match__vs{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--gold);
  border:1px solid rgba(255,215,0,.4);
  border-radius:var(--radius-pill);
  padding:2px 8px;
}

.page-home .home-match__meta{
  font-size:13px;
  color:var(--muted);
  margin-top:6px;
}

.page-home .home-standings{
  display:grid;
  gap:18px;
  align-content:start;
}

.page-home .home-standings__visual{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border-line);
  min-height:160px;
}

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

.page-home .home-standings__table-block{
  background:rgba(10,14,23,.65);
  border-radius:var(--radius-md);
  padding:18px 10px 8px;
}

.page-home .home-standings__list{
  list-style:none;
  margin:0;
  padding:0;
}

.page-home .home-standings__row{
  display:grid;
  grid-template-columns:38px 1fr 40px 44px;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-bottom:1px solid var(--border-line);
  font-family:var(--font-mono);
  font-size:13px;
}

.page-home .home-standings__row:last-child{
  border-bottom:0;
}

.page-home .home-standings__rank{
  color:var(--muted);
}

.page-home .home-standings__row:nth-child(1) .home-standings__rank{
  color:var(--gold);
}

.page-home .home-standings__row:nth-child(2) .home-standings__rank{
  color:var(--blue);
}

.page-home .home-standings__team{
  color:var(--ink);
  font-weight:600;
}

.page-home .home-standings__played{
  color:var(--muted);
  text-align:right;
}

.page-home .home-standings__pts{
  color:var(--green);
  font-weight:800;
  text-align:right;
}

.page-home .home-reco{
  padding:48px 16px;
  background:var(--home-reco-bg);
}

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

.page-home .home-reco__lead{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  max-width:42em;
  margin:14px 0 18px;
}

.page-home .home-reco__lead strong{
  color:var(--green);
  font-weight:700;
}

.page-home .home-reco__list{
  list-style:none;
  margin:0 0 22px;
  padding:0;
  display:grid;
  gap:10px;
}

.page-home .home-reco__list li{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:12px;
  background:rgba(10,14,23,.6);
  border-radius:var(--radius-md);
  padding:12px 14px;
  font-size:14px;
  border-left:3px solid var(--blue);
}

.page-home .home-reco__list span{
  color:var(--ink);
  font-weight:600;
}

.page-home .home-reco__list b{
  font-family:var(--font-mono);
  color:var(--green);
  font-size:18px;
}

.page-home .home-reco__list i{
  font-style:normal;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--muted);
  background:rgba(138,155,176,.12);
  border-radius:var(--radius-pill);
  padding:3px 8px;
}

.page-home .home-reco__ticker{
  overflow:hidden;
  border:1px solid var(--border-line);
  border-radius:var(--radius-md);
  background:rgba(10,14,23,.7);
  padding:12px 0;
  align-self:end;
  max-width:100%;
}

.page-home .home-reco__ticker-track{
  display:flex;
  gap:28px;
  width:max-content;
  min-width:100%;
  animation:homeRecoTicker 22s linear infinite;
  padding-left:16px;
}

.page-home .home-reco__ticker-item{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--ink);
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.page-home .home-reco__ticker-item b{
  color:var(--green);
  font-weight:700;
}

@keyframes homeRecoTicker{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.page-home .home-reco__ticker::after{
  content:"";
  display:block;
  height:2px;
  background:linear-gradient(90deg,var(--green),var(--blue),var(--gold));
  margin-top:10px;
}

.page-home .home-transfers{
  padding:56px 16px;
}

.page-home .home-transfers__intro{
  margin-bottom:22px;
}

.page-home .home-transfers__desc{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  max-width:38em;
  margin:12px 0 18px;
}

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

.page-home .home-transfers__media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border-line);
}

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

.page-home .home-transfers__items{
  display:grid;
  gap:12px;
}

.page-home .home-transfer-item{
  position:relative;
  background:rgba(10,14,23,.6);
  border-radius:var(--radius-md);
  padding:16px 16px 16px 20px;
  overflow:hidden;
}

.page-home .home-transfer-item::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:3px;
  background:linear-gradient(180deg,var(--blue),var(--green));
}

.page-home .home-transfer-item__tag{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--gold);
  border:1px solid rgba(255,215,0,.35);
  border-radius:var(--radius-pill);
  padding:2px 10px;
  margin-bottom:8px;
}

.page-home .home-transfer-item h3{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:800;
  color:var(--ink);
  margin:0 0 6px;
}

.page-home .home-transfer-item p{
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  margin:0;
}

.page-home .home-help{
  padding:40px 16px 72px;
  background:var(--home-help-bg);
}

.page-home .home-help__card{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border-line);
  background:rgba(10,14,23,.7);
}

.page-home .home-help__media{
  position:relative;
  min-height:200px;
  overflow:hidden;
}

.page-home .home-help__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:200px;
}

.page-home .home-help__tag{
  position:absolute;
  right:14px;
  bottom:14px;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--bg-deep);
  background:var(--green);
  border-radius:var(--radius-pill);
  padding:5px 14px;
  font-weight:800;
}

.page-home .home-help__body{
  padding:26px 20px 28px;
}

.page-home .home-help__desc{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  margin:12px 0 18px;
}

.page-home .home-help__steps{
  list-style:none;
  margin:0 0 22px;
  padding:0;
  display:grid;
  gap:10px;
}

.page-home .home-help__steps li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:var(--ink);
  line-height:1.5;
}

.page-home .home-help__steps span{
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:var(--radius-pill);
  background:rgba(0,229,255,.14);
  border:1px solid rgba(0,229,255,.35);
  color:var(--blue);
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:800;
}

@media (min-width:768px){
  .page-home .home-hero{
    padding:28px 24px 0;
  }

  .page-home .home-hero__content{
    padding:70px 56px 96px;
  }

  .page-home .home-hero__meta{
    left:56px;
    right:56px;
  }

  .page-home .home-league__grid{
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:start;
  }

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

  .page-home .home-reco__inner{
    grid-template-columns:1.2fr .8fr;
    align-items:center;
    gap:44px;
  }

  .page-home .home-reco__ticker{
    align-self:center;
  }

  .page-home .home-transfers__deck{
    grid-template-columns:300px 1fr;
    align-items:center;
    gap:36px;
  }

  .page-home .home-help__card{
    grid-template-columns:5fr 7fr;
    align-items:stretch;
  }

  .page-home .home-help__media,
  .page-home .home-help__media img{
    min-height:100%;
    height:100%;
  }

  .page-home .home-help__body{
    padding:34px 34px 34px 30px;
  }
}

@media (min-width:1024px){
  .page-home .home-hero__content{
    min-height:640px;
  }

  .page-home .home-focus{
    padding:64px 0 52px;
  }

  .page-home .home-reco,
  .page-home .home-transfers{
    padding:64px 0;
  }

  .page-home .home-help{
    padding:56px 0 88px;
  }

  .page-home .home-help__body{
    padding:42px 48px;
  }

  .page-home .home-help__desc{
    font-size:16px;
  }

  .page-home .home-stat__num{
    font-size:30px;
  }
}
