.page-home{
  background:var(--c-cream);
  overflow-x:clip;
}
.page-home .home-hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:var(--c-white);
  background:
    radial-gradient(120% 90% at 88% 10%, rgba(137,165,212,.32) 0%, transparent 60%),
    linear-gradient(151deg,#0A1D3C 0%,#07152B 52%,#0A1D3C 100%);
  overflow:hidden;
  isolation:isolate;
  scroll-margin-top:var(--header-h);
}
.page-home .home-hero__bg{
  position:absolute;
  inset:0;
  z-index:-2;
  overflow:hidden;
}
.page-home .home-hero__bg img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 70%;
  opacity:.46;
  transform:scale(1.06);
}
.page-home .home-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(90deg, rgba(10,29,60,.94) 0%, rgba(10,29,60,.78) 42%, rgba(7,21,43,.5) 100%),
    linear-gradient(180deg, rgba(7,21,43,.1) 0%, rgba(7,21,43,.68) 100%);
}
.page-home .home-hero__shape{
  position:absolute;
  z-index:-1;
  pointer-events:none;
}
.page-home .home-hero__shape--one{
  right:-18%;
  top:8%;
  width:62%;
  height:76%;
  background:linear-gradient(215deg, rgba(255,106,0,.38), rgba(255,106,0,.08) 70%);
  clip-path:polygon(22% 0,100% 0,78% 100%,0 100%);
}
.page-home .home-hero__shape--two{
  right:26%;
  bottom:-16%;
  width:30%;
  height:36%;
  background:linear-gradient(115deg, rgba(137,165,212,.24), transparent 70%);
  clip-path:polygon(0 0,100% 12%,82% 100%,0 100%);
}
.page-home .home-hero__wrap{
  display:flex;
  flex-direction:column;
  flex:1;
  justify-content:flex-end;
  padding-top:40px;
  padding-bottom:0;
}
.page-home .home-hero__topline{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:8px 16px;
  padding:22px 0 16px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.06em;
  color:rgba(255,255,255,.68);
  border-bottom:1px solid rgba(255,255,255,.16);
}
.page-home .home-hero__season{
  color:rgba(255,255,255,.9);
}
.page-home .home-hero__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:end;
  padding:48px 0 32px;
}
.page-home .home-hero__title{
  margin:18px 0 0;
  font-family:var(--font-display);
  font-weight:200;
  font-size:clamp(22px,2.4vw,30px);
  line-height:1.1;
  letter-spacing:.02em;
  color:var(--c-white);
}
.page-home .home-hero__year{
  display:block;
  font-size:clamp(88px,15vw,176px);
  font-weight:900;
  line-height:.8;
  letter-spacing:-.06em;
  margin:8px 0 10px;
  background:linear-gradient(180deg,#FFFFFF 24%,#C0C0C0 82%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.page-home .home-hero__zone{
  display:inline-block;
  font-size:clamp(12px,1.4vw,16px);
  font-weight:500;
  letter-spacing:.28em;
  color:var(--c-orange);
  border:1px solid rgba(255,106,0,.52);
  border-radius:var(--radius-pill);
  padding:7px 18px;
  text-transform:uppercase;
}
.page-home .home-hero__lead{
  margin:22px 0 0;
  max-width:34em;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
}
.page-home .home-live{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-lg);
  padding:22px 22px 24px;
  box-shadow:0 28px 64px rgba(0,0,0,.28);
  transition:background-color .3s var(--ease-out),box-shadow .3s var(--ease-out);
}
.page-home .home-live::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:var(--radius-lg);
  background:radial-gradient(80% 60% at 50% 0%, rgba(255,106,0,.22), transparent 70%);
  opacity:0;
  transition:opacity .3s var(--ease-out);
  pointer-events:none;
}
.page-home .home-live:hover{
  background:rgba(255,255,255,.12);
  box-shadow:0 32px 72px rgba(0,0,0,.34);
}
.page-home .home-live:hover::before{
  opacity:1;
}
.page-home .home-live__label{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.16em;
  color:rgba(255,255,255,.68);
}
.page-home .home-live__time{
  font-family:var(--font-mono);
  font-size:44px;
  font-weight:700;
  letter-spacing:.02em;
  line-height:1;
}
.page-home .home-live__round{
  font-size:13px;
  color:rgba(255,255,255,.74);
  margin-bottom:2px;
}
.page-home .home-live .btn{
  width:100%;
  margin-top:10px;
  justify-content:center;
}
.page-home .home-chapters{
  display:flex;
  flex-wrap:wrap;
  gap:4px 18px;
  padding:18px 0 22px;
  border-top:1px solid rgba(255,255,255,.18);
}
.page-home .home-chapters a{
  display:inline-flex;
  align-items:baseline;
  gap:7px;
  padding:6px 0;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-family:var(--font-mono);
  font-size:13px;
  transition:color .18s var(--ease-out),transform .18s var(--ease-out);
}
.page-home .home-chapters a:hover,
.page-home .home-chapters a:focus-visible{
  color:var(--c-white);
  transform:translateY(-2px);
}
.page-home .home-chapters__num{
  color:var(--c-orange);
  font-size:11px;
}
.page-home .home-hero__endline{
  height:4px;
  background:linear-gradient(90deg, var(--c-orange) 0%, var(--c-orange) 76%, transparent 76%);
}
.page-home .home-schedule,
.page-home .home-reports,
.page-home .home-help,
.page-home .home-replay,
.page-home .home-member,
.page-home .home-local{
  scroll-margin-top:var(--header-h);
  padding-top:64px;
  padding-bottom:64px;
}
.page-home .home-schedule{
  background:var(--c-cream);
}
.page-home .home-reports{
  background:var(--c-navy);
  color:var(--c-white);
}
.page-home .home-help{
  background:var(--c-sand);
}
.page-home .home-replay{
  background:var(--c-cream);
}
.page-home .home-member{
  background:var(--c-navy);
  color:var(--c-white);
}
.page-home .home-local{
  background:var(--c-cream);
}
.page-home .home-reports .display-title,
.page-home .home-reports .display-sub,
.page-home .home-member .display-title,
.page-home .home-member .display-sub{
  color:var(--c-white);
}
.page-home .home-reports .display-sub,
.page-home .home-member .display-sub{
  color:rgba(255,255,255,.72);
}
.page-home .home-schedule__board{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:36px;
}
.page-home .home-match{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:14px;
  background:var(--c-white);
  border:1px solid rgba(10,29,60,.08);
  border-radius:var(--radius-lg);
  padding:22px;
  transition:transform .3s var(--ease-out),box-shadow .3s var(--ease-out);
}
.page-home .home-match::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:var(--c-orange);
  border-radius:0 0 24px 24px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s var(--ease-out);
}
.page-home .home-match:hover,
.page-home .home-match:focus-within{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(10,29,60,.12);
}
.page-home .home-match:hover::after,
.page-home .home-match:focus-within::after{
  transform:scaleX(1);
}
.page-home .home-match--featured{
  border-color:rgba(255,106,0,.36);
  box-shadow:0 0 0 4px rgba(255,106,0,.1);
}
.page-home .home-match__meta{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--c-ink);
}
.page-home .home-match__round{
  color:rgba(43,29,20,.6);
}
.page-home .home-match__teams{
  display:flex;
  align-items:center;
  gap:10px;
}
.page-home .home-match__team{
  flex:1;
  font-family:var(--font-display);
  font-weight:700;
  font-size:18px;
  line-height:1.2;
  color:var(--c-navy);
}
.page-home .home-match__team:last-child{
  text-align:right;
}
.page-home .home-match__vs{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--c-silver);
}
.page-home .home-match__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px dashed rgba(10,29,60,.14);
  padding-top:14px;
}
.page-home .home-match__time{
  font-family:var(--font-mono);
  font-weight:700;
  font-size:20px;
  color:var(--c-orange);
}
.page-home .home-schedule__more{
  margin-top:28px;
  text-align:center;
}
.page-home .home-report{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:36px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);
  padding:20px;
}
.page-home .home-report__media .media{
  position:relative;
  border-radius:18px;
  overflow:hidden;
}
.page-home .home-report__media .media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(125deg, rgba(255,106,0,.35), rgba(10,29,60,.1) 60%);
  pointer-events:none;
}
.page-home .home-report__media .media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.page-home .home-report__body{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
}
.page-home .home-report__title{
  font-size:clamp(22px,2.8vw,32px);
  font-weight:700;
  color:var(--c-white);
  line-height:1.18;
}
.page-home .home-report__excerpt{
  color:rgba(255,255,255,.78);
  line-height:1.7;
}
.page-home .home-report__row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.page-home .home-report__tag{
  font-size:12px;
  padding:5px 12px;
  border-radius:var(--radius-pill);
  border:1px solid rgba(255,106,0,.5);
  color:var(--c-orange);
  font-family:var(--font-mono);
}
.page-home .home-help__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:36px;
}
.page-home .home-help__card{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
  background:var(--c-white);
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow:0 8px 24px rgba(10,29,60,.06);
  transition:transform .3s var(--ease-out),box-shadow .3s var(--ease-out);
}
.page-home .home-help__card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(10,29,60,.12);
}
.page-home .home-help__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:var(--c-navy);
  color:var(--c-orange);
  font-family:var(--font-mono);
  font-weight:700;
  font-size:18px;
}
.page-home .home-help__card h3{
  font-size:20px;
  color:var(--c-navy);
  line-height:1.3;
}
.page-home .home-help__card p{
  color:rgba(43,29,20,.7);
  line-height:1.65;
}
.page-home .home-replay__layout{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
  margin-top:36px;
}
.page-home .home-replay__media .media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 24px 48px rgba(10,29,60,.14);
}
.page-home .home-replay__media .media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.page-home .home-replay__content h3{
  font-size:24px;
  color:var(--c-navy);
}
.page-home .home-replay__content p{
  color:rgba(43,29,20,.72);
  line-height:1.7;
  margin-top:10px;
}
.page-home .home-replay__teams{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:18px 0;
}
.page-home .home-replay__teams li{
  padding:6px 14px;
  border:1px solid rgba(10,29,60,.14);
  border-radius:var(--radius-pill);
  font-size:13px;
  color:var(--c-navy);
  background:var(--c-white);
}
.page-home .home-member__panel{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center;
}
.page-home .home-member__copy{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.page-home .home-member__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.page-home .home-stat{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.page-home .home-stat__num{
  font-size:32px;
  font-weight:700;
  color:var(--c-orange);
  line-height:1;
}
.page-home .home-stat__label{
  font-size:12px;
  color:rgba(255,255,255,.7);
}
.page-home .home-member__board svg{
  display:block;
  width:100%;
  height:auto;
  border-radius:var(--radius-lg);
  box-shadow:0 28px 56px rgba(0,0,0,.3);
}
.page-home .home-member__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-home .home-local__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  margin-top:36px;
  align-items:center;
}
.page-home .home-local__media .media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 24px 48px rgba(10,29,60,.14);
}
.page-home .home-local__media .media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.page-home .home-local__cities{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.page-home .home-city{
  display:flex;
  align-items:baseline;
  gap:12px;
  background:var(--c-white);
  border:1px solid rgba(10,29,60,.06);
  border-radius:18px;
  padding:16px 18px;
}
.page-home .home-city h3{
  font-size:16px;
  color:var(--c-navy);
  min-width:44px;
}
.page-home .home-city p{
  font-size:14px;
  color:rgba(43,29,20,.7);
  line-height:1.5;
}
.page-home .home-local__dialect{
  margin-top:6px;
  padding:10px 14px;
  font-size:15px;
  color:var(--c-navy);
  background:rgba(255,106,0,.1);
  border-left:3px solid var(--c-orange);
  border-radius:8px;
}
.page-home .home-local__dialect-en{
  color:rgba(43,29,20,.6);
  margin-left:6px;
}
.page-home .home-local__foot{
  margin-top:32px;
  text-align:center;
}
@media (min-width:600px){
  .page-home .home-help__grid{
    grid-template-columns:1fr 1fr;
  }
  .page-home .home-local__cities{
    grid-template-columns:repeat(3,1fr);
  }
  .page-home .home-city{
    flex-direction:column;
    gap:6px;
  }
}
@media (min-width:880px){
  .page-home .home-schedule__board{
    grid-template-columns:repeat(3,1fr);
  }
  .page-home .home-report{
    grid-template-columns:42% 1fr;
    align-items:center;
    gap:40px;
    padding:28px;
  }
  .page-home .home-replay__layout{
    grid-template-columns:38% 1fr;
    gap:48px;
  }
  .page-home .home-member__panel{
    grid-template-columns:1fr 44%;
    gap:48px;
  }
  .page-home .home-local__grid{
    grid-template-columns:46% 1fr;
    gap:48px;
  }
}
@media (min-width:900px){
  .page-home .home-hero__grid{
    grid-template-columns:1fr 340px;
    gap:48px;
  }
  .page-home .home-hero__wrap{
    padding-top:64px;
  }
  .page-home .home-schedule,
  .page-home .home-reports,
  .page-home .home-help,
  .page-home .home-replay,
  .page-home .home-member,
  .page-home .home-local{
    padding-top:96px;
    padding-bottom:104px;
  }
}
@media (prefers-reduced-motion:reduce){
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    transition-duration:.01ms !important;
  }
  .page-home .home-hero__bg img{
    transform:none;
  }
}
