.page-home{
  --home-line: rgba(26,42,74,0.12);
  --home-line-light: rgba(255,255,255,0.16);
  overflow-x:hidden;
}
.page-home .breadcrumb{
  margin-bottom:20px;
}
.page-home .breadcrumb ol{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
  margin:0;
  font-family:var(--font-mono);
  font-size:12px;
}
.page-home .breadcrumb a{
  color:rgba(255,255,255,0.72);
  text-decoration:none;
}
.page-home .breadcrumb a:hover{
  color:var(--accent);
}
.page-home .breadcrumb li + li::before{
  content:"/";
  color:rgba(255,255,255,0.35);
  margin-right:10px;
}
.page-home .breadcrumb li[aria-current="page"]{
  color:var(--accent);
}
.page-home .home-hero{
  position:relative;
  background:var(--gradient-blue);
  color:var(--white);
  overflow:hidden;
}
.page-home .home-hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:36px 36px;
  clip-path:polygon(0 0, 100% 0, 100% 72%, 0 100%);
}
.page-home .home-hero__bg::before{
  content:"";
  position:absolute;
  right:-8%;
  top:-18%;
  width:58%;
  height:72%;
  background:radial-gradient(circle, rgba(255,107,53,0.42) 0%, rgba(255,107,53,0) 68%);
}
.page-home .home-hero__bg::after{
  content:"";
  position:absolute;
  left:30%;
  bottom:-30%;
  width:70%;
  height:70%;
  background:radial-gradient(circle, rgba(42,74,127,0.6) 0%, rgba(42,74,127,0) 70%);
}
.page-home .home-hero__inner{
  position:relative;
  display:grid;
  gap:36px;
  padding-top:40px;
  padding-bottom:64px;
}
.page-home .home-hero__copy{
  max-width:760px;
}
.page-home .home-hero h1{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:clamp(2rem, 4.5vw, 3.8rem);
  line-height:1.12;
  letter-spacing:-0.02em;
  margin:16px 0 20px;
}
.page-home .home-hero__desc{
  color:rgba(255,255,255,0.86);
  font-size:1.02rem;
  line-height:1.75;
  max-width:640px;
  margin:0 0 28px;
}
.page-home .home-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-home .home-hero__actions .btn-ghost{
  border-color:rgba(255,255,255,0.6);
  color:var(--white);
}
.page-home .home-hero__visual{
  position:relative;
  max-width:640px;
}
.page-home .home-hero__figure{
  margin:0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  transform:rotate(1.5deg);
}
.page-home .home-hero__figure img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
}
.page-home .home-hero__float{
  position:absolute;
  background:var(--white);
  color:var(--text);
  border-radius:14px;
  box-shadow:var(--shadow-lg);
  padding:12px 16px;
  display:grid;
  gap:2px;
  font-family:var(--font-mono);
  z-index:2;
}
.page-home .home-hero__float strong{
  font-size:1.4rem;
  line-height:1;
  color:var(--primary);
}
.page-home .home-hero__float small{
  color:var(--text-aux);
  font-size:0.75rem;
}
.page-home .home-hero__float--primary{
  top:-14px;
  right:8px;
  background:var(--gradient-orange);
  color:var(--white);
}
.page-home .home-hero__float--primary strong{
  color:var(--white);
}
.page-home .home-hero__float--primary small{
  color:rgba(255,255,255,0.82);
}
.page-home .home-hero__float--score{
  bottom:-18px;
  left:-6px;
  grid-template-columns:auto auto auto;
  align-items:center;
  gap:8px;
}
.page-home .home-hero__float--score span{
  font-size:1.6rem;
  font-weight:600;
  color:var(--accent);
}
.page-home .home-hero__float--score i{
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--text-aux);
}
.page-home .home-hero__ticks{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  list-style:none;
  padding:0;
  margin:24px 0 0;
  color:rgba(255,255,255,0.8);
  font-family:var(--font-mono);
  font-size:0.82rem;
}
.page-home .home-hero__ticks li{
  display:flex;
  align-items:center;
  gap:6px;
}
.page-home .home-hero__ticks li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:2px;
  background:var(--accent);
}
.page-home .home-navigator{
  background:var(--bg-gray);
}
.page-home .home-navigator .editorial-grid{
  display:grid;
  gap:24px;
}
.page-home .home-navigator .editorial-aside{
  font-family:var(--font-mono);
  font-size:0.88rem;
  color:var(--text-aux);
  display:grid;
  gap:16px;
  align-content:start;
}
.page-home .home-note{
  margin:0;
  border-left:2px solid var(--accent);
  padding-left:12px;
  color:var(--text-aux);
  line-height:1.6;
}
.page-home .home-navigator h2{
  font-family:var(--font-heading);
  font-size:2rem;
  color:var(--primary);
  margin:8px 0 12px;
}
.page-home .home-navigator .editorial-content > p{
  color:var(--text-aux);
  max-width:600px;
  margin-bottom:24px;
}
.page-home .home-navigator__map{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
  padding-bottom:20px;
}
.page-home .home-navigator__item{
  background:var(--white);
  border-radius:var(--radius);
  border:1px solid var(--home-line);
  box-shadow:var(--shadow);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.page-home .home-navigator__item a{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:4px 14px;
  align-items:center;
  padding:22px 20px;
  text-decoration:none;
  color:var(--text);
}
.page-home .home-navigator__item .data-index{
  grid-row:span 2;
  font-family:var(--font-mono);
  font-size:1.3rem;
  color:var(--accent);
  background:rgba(255,107,53,0.1);
  border-radius:10px;
  padding:10px 8px;
  text-align:center;
  min-width:44px;
}
.page-home .home-navigator__item strong{
  font-family:var(--font-heading);
  font-size:1.05rem;
  color:var(--primary);
}
.page-home .home-navigator__item small{
  color:var(--text-aux);
  font-size:0.84rem;
}
.page-home .home-navigator__item:hover,
.page-home .home-navigator__item:focus-within{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--accent);
}
.page-home .home-matches{
  background:var(--gradient-blue);
  color:var(--white);
  overflow:hidden;
}
.page-home .home-matches__lead{
  max-width:640px;
  margin-bottom:28px;
}
.page-home .home-matches h2{
  font-family:var(--font-heading);
  font-size:2rem;
  margin:8px 0 12px;
}
.page-home .home-matches__lead p:not(.section-kicker){
  color:rgba(255,255,255,0.78);
}
.page-home .home-matches__grid{
  display:grid;
  gap:18px;
  align-items:stretch;
}
.page-home .home-matches__fixture,
.page-home .home-matches__panel{
  background:rgba(255,255,255,0.07);
  border:1px solid var(--home-line-light);
  border-radius:var(--radius);
  padding:22px;
}
.page-home .home-matches__fixture h3,
.page-home .home-matches__panel h3{
  font-family:var(--font-heading);
  font-size:1.25rem;
  margin:10px 0 16px;
}
.page-home .home-matches__fixture dl{
  display:grid;
  gap:10px;
  margin:0;
}
.page-home .home-matches__fixture dl div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px dashed rgba(255,255,255,0.16);
  padding-bottom:8px;
  font-size:0.92rem;
}
.page-home .home-matches__fixture dt{
  color:rgba(255,255,255,0.66);
}
.page-home .home-matches__fixture dd{
  margin:0;
  font-family:var(--font-mono);
  color:var(--accent-light);
}
.page-home .home-matches__bars{
  display:grid;
  gap:12px;
  margin:16px 0;
}
.page-home .home-matches__bar{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:0.82rem;
}
.page-home .home-matches__bar::before{
  content:"";
  grid-column:1 / -1;
  grid-row:1;
  height:34px;
  border-radius:8px;
}
.page-home .home-matches__bar--home::before{
  width:58%;
  background:linear-gradient(90deg, var(--accent), var(--accent-light));
}
.page-home .home-matches__bar--away::before{
  width:42%;
  background:rgba(255,255,255,0.4);
}
.page-home .home-matches__bar span{
  grid-column:1 / -1;
  grid-row:1;
  position:relative;
  display:block;
  height:34px;
  line-height:34px;
  padding:0 12px;
  font-size:0.82rem;
}
.page-home .home-matches__lineup{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--home-line-light);
}
.page-home .home-matches__lineup img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  aspect-ratio:4/3;
}
.page-home .home-shoot{
  background:var(--bg-gray);
}
.page-home .home-shoot__grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.page-home .home-shoot__visual{
  position:relative;
  max-width:640px;
}
.page-home .home-shoot__visual img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
}
.page-home .home-shoot__ring{
  position:absolute;
  right:-8px;
  bottom:-16px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:var(--gradient-orange);
  display:grid;
  place-items:center;
  color:var(--white);
  font-family:var(--font-mono);
  font-size:1.3rem;
  box-shadow:var(--shadow-lg);
}
.page-home .home-shoot__content h2{
  font-family:var(--font-heading);
  font-size:2rem;
  color:var(--primary);
  margin:8px 0 12px;
}
.page-home .home-shoot__content > p{
  color:var(--text-aux);
}
.page-home .home-shoot__stats{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:24px;
}
.page-home .home-shoot__stat{
  background:var(--white);
  border:1px solid var(--home-line);
  border-radius:var(--radius);
  padding:18px;
  display:grid;
  gap:4px;
  box-shadow:var(--shadow);
  transition:transform var(--transition), border-color var(--transition);
}
.page-home .home-shoot__stat:hover,
.page-home .home-shoot__stat:focus-within{
  transform:translateY(-4px);
  border-color:var(--accent);
}
.page-home .home-shoot__stat .data-value{
  font-family:var(--font-mono);
  font-size:1.8rem;
  color:var(--accent);
}
.page-home .home-shoot__stat span:last-child{
  font-size:0.86rem;
  color:var(--text-aux);
}
.page-home .home-restore{
  background:var(--primary-deep);
  color:var(--white);
}
.page-home .home-restore__head{
  max-width:640px;
  margin-bottom:32px;
}
.page-home .home-restore h2{
  font-family:var(--font-heading);
  font-size:2rem;
  margin:8px 0 12px;
}
.page-home .home-restore__head p:not(.section-kicker){
  color:rgba(255,255,255,0.7);
}
.page-home .home-restore__body{
  display:grid;
  gap:24px;
}
.page-home .home-restore__steps{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:14px;
}
.page-home .home-restore__step{
  background:rgba(255,255,255,0.07);
  border:1px solid var(--home-line-light);
  border-radius:var(--radius);
  padding:20px;
  display:grid;
  gap:8px;
  transition:transform var(--transition), border-color var(--transition);
}
.page-home .home-restore__step .data-index{
  justify-self:start;
}
.page-home .home-restore__step h3{
  font-family:var(--font-heading);
  font-size:1.05rem;
  margin:6px 0 0;
}
.page-home .home-restore__step p{
  margin:0;
  color:rgba(255,255,255,0.68);
  font-size:0.94rem;
}
.page-home .home-restore__step a{
  color:var(--accent);
  text-decoration:none;
  font-size:0.92rem;
}
.page-home .home-restore__step a:hover{
  text-decoration:underline;
}
.page-home .home-restore__figure{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--home-line-light);
}
.page-home .home-restore__figure img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
}
.page-home .home-proof{
  background:var(--white);
}
.page-home .home-proof h2{
  font-family:var(--font-heading);
  color:var(--primary);
  font-size:2rem;
  margin:8px 0 12px;
}
.page-home .home-proof__intro{
  color:var(--text-aux);
  max-width:640px;
  margin:0 0 24px;
}
.page-home .home-proof__list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-bottom:28px;
}
.page-home .home-proof__item{
  border:1px solid var(--home-line);
  border-radius:var(--radius);
  background:linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
  padding:20px;
  display:grid;
  gap:4px;
}
.page-home .home-proof__item .data-value{
  font-family:var(--font-mono);
  font-size:1.6rem;
  color:var(--primary);
}
.page-home .home-proof__item span:last-child{
  color:var(--text-aux);
  font-size:0.9rem;
}
.page-home .home-proof__foot{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  padding-top:20px;
  border-top:1px solid var(--home-line);
}
.page-home .home-proof__foot p{
  flex:1 1 100%;
  color:var(--text-aux);
  margin:0;
  font-size:0.94rem;
}
@media (min-width: 700px){
  .page-home .home-proof__list{
    grid-template-columns:repeat(4, 1fr);
  }
  .page-home .home-proof__foot p{
    flex:0 1 56%;
  }
}
@media (min-width: 900px){
  .page-home .home-navigator .editorial-grid{
    grid-template-columns:220px minmax(0, 1fr);
    gap:48px;
  }
  .page-home .home-navigator__map{
    grid-template-columns:1.1fr 1fr 0.9fr;
  }
  .page-home .home-navigator__item:nth-child(2){
    transform:translateY(18px);
  }
  .page-home .home-navigator__item:nth-child(3){
    align-self:end;
  }
  .page-home .home-navigator__item:nth-child(4){
    grid-column:2 / -1;
    align-self:center;
    transform:translateY(-10px);
  }
  .page-home .home-matches__grid{
    grid-template-columns:0.9fr 1.1fr;
  }
  .page-home .home-matches__lineup{
    grid-column:1 / -1;
  }
  .page-home .home-shoot__grid{
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:48px;
  }
  .page-home .home-shoot__visual{
    max-width:none;
  }
  .page-home .home-restore__body{
    grid-template-columns:minmax(0, 1.2fr) minmax(0, 1fr);
    gap:40px;
    align-items:center;
  }
  .page-home .home-restore__steps{
    margin-bottom:0;
  }
}
@media (min-width: 1200px){
  .page-home .home-hero__inner{
    grid-template-columns:minmax(0, 5.5fr) minmax(0, 4.5fr);
    gap:48px;
    align-items:center;
    min-height:calc(100vh - 80px);
    padding-top:72px;
    padding-bottom:96px;
  }
  .page-home .home-hero__visual{
    max-width:none;
    margin-top:8%;
  }
}
