.page-home{
  --home-hero-font: clamp(2.75rem, 9vw, 5rem);
  background: var(--color-bg);
  color: var(--color-ink);
  overflow-x: hidden;
}

.page-home .home-breadcrumb{
  padding: 1rem 1.25rem 0;
  margin: 0;
}

.page-home .home-breadcrumb a{
  color: var(--color-blue-light);
  text-decoration: none;
  transition: color var(--ease);
}

.page-home .home-breadcrumb a:hover,
.page-home .home-breadcrumb a:focus{
  color: var(--color-orange);
  text-decoration: underline;
}

.page-home .home-hero{
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 2.5rem 1.25rem 3.5rem;
  background: linear-gradient(175deg, var(--color-blue) 0%, var(--color-blue) 74%, transparent 74%);
}

.page-home .hero-copy{
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.page-home .hero-copy .page-kicker{
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-neon);
}

.page-home .hero-copy .page-title{
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: var(--home-hero-font);
  line-height: 1.08;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.page-home .hero-copy .lead{
  margin: 0 0 1.5rem;
  color: rgb(255 255 255 / 0.82);
  max-width: 38rem;
}

.page-home .hero-stage{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.page-home .hero-img-wrap{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}

.page-home .hero-img-wrap img{
  display: block;
  width: 100%;
  height: auto;
}

.page-home .countdown-card{
  position: relative;
  z-index: 2;
  max-width: 22rem;
  margin: -2.75rem 0 0 auto;
  border-radius: var(--radius);
  background: var(--color-neon);
  color: var(--color-blue);
  padding: 1.5rem 1.5rem 1.375rem;
  box-shadow: 6px 6px 0 var(--color-orange);
}

.page-home .countdown-card-title{
  margin: 0.625rem 0 0.25rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--color-blue);
}

.page-home .countdown-label{
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-home .countdown-display{
  margin: 0 0 0.375rem;
  font-family: var(--font-heading);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  animation: home-blink 1.8s step-end infinite;
}

.page-home .countdown-meta{
  margin: 0;
  font-size: 0.875rem;
  color: rgb(10 31 68 / 0.75);
}

.page-home .home-announce{
  padding: 4rem 1.25rem;
}

.page-home .home-announce .section-head{
  margin-bottom: 2.25rem;
}

.page-home .announce-layout{
  display: grid;
  gap: 2rem;
}

.page-home .announce-main{
  display: grid;
  gap: 1.75rem;
}

.page-home .announce-item{
  margin: 0;
  padding-bottom: 1.75rem;
  border-bottom: 1px dashed rgb(10 31 68 / 0.18);
}

.page-home .announce-item:last-of-type{
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .announce-item-top{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.page-home .announce-meta{
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-blue-light);
}

.page-home .announce-item-title{
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.4;
}

.page-home .announce-item p:last-child{
  margin-bottom: 0;
}

.page-home .announce-note{
  position: relative;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.page-home .announce-note::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, transparent 48%, var(--color-neon) 48%, var(--color-neon) 52%, transparent 52%);
}

.page-home .note-kicker{
  margin: 0 0 0.5rem;
  color: var(--color-neon);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.page-home .note-lead{
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
}

.page-home .announce-note p:last-child{
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.78);
  line-height: 1.7;
}

.page-home .home-schedule{
  background: var(--color-blue);
  color: var(--color-white);
  padding: 4.25rem 1.25rem;
}

.page-home .home-schedule .section-head{
  margin-bottom: 2.25rem;
}

.page-home .home-schedule .section-kicker{
  color: var(--color-neon);
}

.page-home .home-schedule .section-title{
  color: var(--color-white);
}

.page-home .schedule-grid{
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-home .schedule-media{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.25);
}

.page-home .schedule-media img{
  display: block;
  width: 100%;
  height: auto;
}

.page-home .schedule-media .media-caption{
  color: rgb(255 255 255 / 0.72);
}

.page-home .schedule-panels{
  display: grid;
  gap: 1.25rem;
}

.page-home .schedule-panel,
.page-home .schedule-panel h3,
.page-home .schedule-panel p{
  color: var(--color-ink);
}

.page-home .schedule-panel{
  padding: 1.5rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.page-home .schedule-panel:hover,
.page-home .schedule-panel:focus-within{
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

.page-home .panel-index{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-neon);
  color: var(--color-blue);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.75rem;
}

.page-home .schedule-panel h3{
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.page-home .schedule-panel p{
  margin: 0;
  line-height: 1.7;
}

.page-home .schedule-action{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-home .home-team{
  padding: 4.25rem 1.25rem;
}

.page-home .home-team .section-head{
  margin-bottom: 2.25rem;
}

.page-home .team-layout{
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-home .team-figure{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--color-orange);
}

.page-home .team-figure img{
  display: block;
  width: 100%;
  height: auto;
}

.page-home .team-figure .media-caption{
  padding: 0.875rem 0 0;
}

.page-home .team-copy .lead{
  margin-top: 0;
}

.page-home .team-tag-list{
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.125rem;
}

.page-home .team-tag-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  line-height: 1.6;
}

.page-home .team-tag-list .tag{
  white-space: nowrap;
  flex-shrink: 0;
}

.page-home .home-follow{
  padding: 4.25rem 1.25rem;
}

.page-home .home-follow .section-head{
  margin-bottom: 2.25rem;
}

.page-home .follow-grid{
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-home .follow-media{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--color-neon);
}

.page-home .follow-media img{
  display: block;
  width: 100%;
  height: auto;
}

.page-home .follow-copy{
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-glass);
}

.page-home .follow-copy > p:first-of-type{
  margin-top: 0;
}

.page-home .follow-points{
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.page-home .follow-points li{
  position: relative;
  padding-left: 2rem;
  line-height: 1.75;
}

.page-home .follow-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--color-neon);
  border: 1px solid var(--color-ink);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-home .home-trust{
  padding: 3rem 1.25rem 4.5rem;
}

.page-home .trust-strip{
  background: var(--color-orange);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-pop);
}

.page-home .trust-strip p{
  margin: 0;
  font-weight: 700;
  line-height: 1.75;
}

.page-home .home-link-scale{
  transition: transform var(--ease), box-shadow var(--ease);
}

.page-home .home-link-scale:hover,
.page-home .home-link-scale:focus-visible{
  transform: scale(1.04);
  box-shadow: var(--shadow-pop);
}

@keyframes home-blink{
  0%, 100%{
    opacity: 1;
  }
  50%{
    opacity: 0.82;
  }
}

@media (min-width: 960px){
  .page-home{
    --home-hero-font: clamp(3.5rem, 6.5vw, 5.75rem);
  }

  .page-home .home-hero{
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 3rem;
    min-height: 72vh;
    padding: 4.5rem 2.5rem 4.5rem 3.5rem;
    background: linear-gradient(115deg, var(--color-blue) 0%, var(--color-blue) 52%, var(--color-neon) 52%, var(--color-neon) 53%, var(--color-bg) 53%);
  }

  .page-home .hero-stage{
    gap: 1.5rem;
    justify-items: end;
  }

  .page-home .hero-img-wrap{
    width: min(38vw, 36rem);
  }

  .page-home .countdown-card{
    margin: -3.25rem 0 0 3rem;
    max-width: 25rem;
  }

  .page-home .announce-layout{
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .page-home .schedule-grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .page-home .schedule-panels{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .schedule-action{
    margin-top: 2.5rem;
  }

  .page-home .team-layout{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .page-home .follow-grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .trust-strip{
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 2.5rem 3rem;
  }
}
