.page-home{
  --hero-glow: rgba(212,168,67,0.22);
  --hero-grid-line: rgba(232,240,254,0.07);
  --card-radius: 26px;
  background: var(--color-deep);
  color: var(--color-ice);
  overflow-x: hidden;
}
.page-home .meta{
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-moon);
}
.page-home .btn{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--ease) 0.2s;
}
.page-home .btn--gold{
  background: var(--color-gold);
  color: var(--color-ink);
}
.page-home .btn--gold:hover{
  background: var(--color-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242,201,76,0.22);
}
.page-home .btn--ghost{
  background: transparent;
  color: var(--color-ice);
  border: 1px solid rgba(232,240,254,0.35);
}
.page-home .btn--ghost:hover{
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}
.page-home .link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,67,0.3);
  transition: all var(--ease) 0.2s;
}
.page-home .link-arrow:hover{
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
  gap: 0.7rem;
}
.page-home .bento-card{
  border-radius: var(--card-radius);
  background: linear-gradient(145deg, rgba(18,42,78,0.9), rgba(11,29,58,0.95));
  border: 1px solid rgba(176,196,222,0.1);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: transform var(--ease) 0.25s, border-color var(--ease) 0.25s, box-shadow var(--ease) 0.25s;
  overflow: hidden;
}
.page-home .bento-card:hover{
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212,168,67,0.5);
  box-shadow: 0 16px 36px rgba(6,16,31,0.5);
}
.page-home .section{
  padding-block: var(--section-py);
}
.page-home .section-head{
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-home .section-index{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-home .section-index::after{
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}
.page-home .section-index__num{
  color: var(--color-moon);
}
.page-home .section-title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Hero */
.page-home .home-hero{
  padding-top: clamp(6.5rem, 10vw, 8.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 20% 10%, var(--hero-glow), transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(57,210,242,0.12), transparent 70%),
    var(--color-deep);
}
.page-home .home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-home .home-hero::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(18,42,78,0.25) 70%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}
.page-home .home-hero__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.page-home .home-hero__content{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.page-home .home-hero__index{
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: 999px;
  background: rgba(11,29,58,0.7);
}
.page-home .home-hero__index span{
  color: var(--color-gold);
}
.page-home .home-hero__title{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-ice);
  text-transform: uppercase;
  position: relative;
}
.page-home .home-hero__title em{
  font-style: normal;
  display: inline-block;
  color: var(--color-gold);
  -webkit-text-stroke: 1px rgba(212,168,67,0.3);
  position: relative;
}
.page-home .home-hero__title em::after{
  content: "";
  position: absolute;
  top: 0;
  left: -1.2rem;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(212,168,67,0.18), transparent 70%);
  clip-path: polygon(4% 0, 96% 0, 88% 100%, 12% 100%);
  pointer-events: none;
}
.page-home .home-hero__lead{
  max-width: 40rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.8;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-hero__meta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  width: 100%;
  max-width: 40rem;
  padding-top: 0.4rem;
}
.page-home .home-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.8rem;
}
.page-home .home-hero__visual{
  position: relative;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(6,16,31,0.6));
}
.page-home .home-hero__svg{
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 992px){
  .page-home .home-hero__inner{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .page-home .home-hero__title{
    font-size: clamp(3.4rem, 6.5vw, 6.2rem);
  }
}

/* Schedule bento */
.page-home .home-schedule__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.page-home .home-schedule__card{
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: flex-start;
  min-height: 200px;
}
.page-home .home-schedule__card-index{
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}
.page-home .home-schedule__stroke{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.6;
}
.page-home .home-schedule__stat{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--color-ice);
  margin: 0;
}
.page-home .home-schedule__stat strong{
  color: var(--color-gold);
}
.page-home .home-schedule__progress{
  height: 7px;
  border-radius: 999px;
  background: rgba(232,240,254,0.1);
  overflow: hidden;
  position: relative;
}
.page-home .home-schedule__progress-fill{
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright));
  border-radius: 999px;
  font-size: 0;
  position: relative;
}
.page-home .home-schedule__note{
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-schedule__features{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-home .home-schedule__feature{
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-home .home-schedule__feature-tag{
  background: rgba(212,168,67,0.12);
  color: var(--color-gold);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 6px;
  padding: 0.1rem 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}
.page-home .home-schedule__result-score{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--color-gold);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}
.page-home .home-schedule__result-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-ice);
  margin: 0;
}
.page-home .home-schedule__result-score,
.page-home .home-schedule__result-name{
  position: relative;
}
.page-home .home-schedule__result-score::before{
  content: "";
  position: absolute;
  top: -6px;
  left: -10px;
  width: 4px;
  height: 2.4rem;
  border-radius: 2px;
  background: var(--color-electric);
  opacity: 0.6;
}
.page-home .home-schedule__set-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-ice);
  margin: 0;
}
.page-home .home-schedule__set-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-home .home-schedule__set-list li{
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-moon);
}
.page-home .home-schedule__set-marker{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-electric);
  flex-shrink: 0;
}
.page-home .home-schedule__set-marker--gold{
  background: var(--color-gold);
}
.page-home .home-schedule__set-marker--red{
  background: var(--color-red);
}
.page-home .home-schedule__rivalry-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-ice);
  margin: 0;
  position: relative;
  padding-left: 0.8rem;
}
.page-home .home-schedule__rivalry-name::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 2px;
  background: var(--color-red);
}
.page-home .home-schedule__archive-title,
.page-home .home-schedule__sub-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-ice);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px){
  .page-home .home-schedule__grid{
    grid-template-columns: repeat(6, 1fr);
  }
  .page-home .col-3{grid-column: span 3;}
  .page-home .col-4{grid-column: span 4;}
  .page-home .col-6{grid-column: span 6;}
  .page-home .col-5{grid-column: span 5;}
  .page-home .col-7{grid-column: span 7;}
  .page-home .col-8{grid-column: span 8;}
  .page-home .col-12{grid-column: span 12;}
}

@media (max-width: 767px){
  .page-home .col-3,
  .page-home .col-4,
  .page-home .col-5,
  .page-home .col-6,
  .page-home .col-7,
  .page-home .col-8,
  .page-home .col-12{
    grid-column: span 1;
  }
  .page-home .bento-card{
    padding: 1.4rem 1.2rem;
  }
}

/* History section */
.page-home .home-history{
  background:
    linear-gradient(205deg, transparent 40%, rgba(18,42,78,0.6) 110%);
  border-block: 1px solid rgba(176,196,222,0.08);
}
.page-home .home-history__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.page-home .home-history__visual{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .home-history__pile{
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.page-home .home-history__pile--back{
  inset: 0.5rem 1.5rem 0.5rem -1rem;
  background: linear-gradient(135deg, rgba(212,168,67,0.5), rgba(18,42,78,0.8));
  transform: rotate(-5deg);
  border: 1px solid rgba(212,168,67,0.4);
}
.page-home .home-history__pile--mid{
  inset: 0rem 0.5rem -0.5rem 0.5rem;
  background: linear-gradient(135deg, rgba(57,210,242,0.3), rgba(18,42,78,0.9));
  transform: rotate(2deg);
  border: 1px solid rgba(57,210,242,0.25);
}
.page-home .home-history__pile--front{
  position: relative;
  width: min(88%, 520px);
  aspect-ratio: 1/1;
  border: 1px solid rgba(176,196,222,0.2);
  box-shadow: 0 30px 60px rgba(6,16,31,0.6);
  transform: rotate(-1deg);
}
.page-home .home-history__pile--front img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-history__clip{
  position: absolute;
  top: 0.8rem;
  right: 1.4rem;
  width: 2rem;
  height: 2.4rem;
  border: 2px solid rgba(212,168,67,0.7);
  border-radius: 2px;
  transform: rotate(24deg);
  z-index: 3;
}
.page-home .home-history__clip::after{
  content: "";
  position: absolute;
  top: 60%;
  left: -4px;
  right: -4px;
  height: 8px;
  background: rgba(212,168,67,0.3);
}
.page-home .home-history__content{
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
}
.page-home .home-history__head{
  margin-bottom: 0;
}
.page-home .home-history__lead{
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-moon);
  max-width: 37rem;
  margin: 0;
}
.page-home .home-history__query{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: rgba(6,16,31,0.5);
  border: 1px solid rgba(176,196,222,0.15);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  width: 100%;
  max-width: 34rem;
}
@media (min-width: 640px){
  .page-home .home-history__query{
    flex-direction: row;
    gap: 0.9rem;
    align-items: center;
  }
}
.page-home .home-history__query-label{
  flex-shrink: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.page-home .home-history__query-dropdown{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: rgba(11,29,58,0.9);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-ice);
  flex: 1;
}
.page-home .home-history__query-icon{
  color: var(--color-gold);
  font-size: 1.1rem;
}
.page-home .home-history__query-divider{
  display: none;
  width: 1px;
  height: 1.6rem;
  background: rgba(176,196,222,0.2);
}
@media (min-width: 640px){
  .page-home .home-history__query-divider{
    display: block;
  }
}
.page-home .home-history__steps{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 34rem;
}
.page-home .home-history__step{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(176,196,222,0.08);
}
.page-home .home-history__step:last-child{
  border-bottom: none;
}
.page-home .home-history__step-num{
  font-size: 0.75rem;
  color: var(--color-gold);
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.page-home .home-history__step-text{
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-history__action{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding-top: 0.6rem;
}

@media (min-width: 992px){
  .page-home .home-history__inner{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

/* Sync */
.page-home .home-sync__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.page-home .home-sync__card{
  min-height: 280px;
}
.page-home .home-sync__card--decor{
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .home-sync__visual{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.page-home .home-sync__figure{
  margin: 0;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(176,196,222,0.12);
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 48px rgba(6,16,31,0.5);
}
.page-home .home-sync__figure img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.page-home .home-sync__device{
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(18,42,78,0.95), rgba(11,29,58,0.85));
  border: 1px solid rgba(176,196,222,0.2);
  display: block;
  z-index: 2;
}
.page-home .home-sync__device--phone{
  width: 46px;
  height: 92px;
  top: 6%;
  left: 6%;
  transform: rotate(-12deg);
}
.page-home .home-sync__device--phone::after{
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  background: rgba(212,168,67,0.6);
  border-radius: 2px;
  top: 12px;
  left: 11px;
}
.page-home .home-sync__device--pad{
  width: 74px;
  height: 100px;
  top: 10%;
  right: 24%;
  transform: rotate(7deg);
  border-radius: 14px;
}
.page-home .home-sync__device--pad::after{
  content: "";
  position: absolute;
  width: 52px;
  height: 4px;
  background: rgba(57,210,242,0.5);
  border-radius: 2px;
  top: 16px;
  left: 11px;
}
.page-home .home-sync__device--desk{
  width: 130px;
  height: 80px;
  left: 18%;
  bottom: 8%;
  transform: rotate(3deg);
}
.page-home .home-sync__device--desk::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: rgba(6,16,31,0.8);
  border-radius: 4px;
  bottom: -6px;
  left: 0;
  transform: perspective(40px) rotateX(30deg);
}
.page-home .home-sync__line{
  position: absolute;
  left: 16%;
  top: 28%;
  width: 74%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-electric), transparent);
  transform: rotate(-8deg);
  z-index: 1;
}
.page-home .home-sync__beacon{
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 3;
}
.page-home .home-sync__beacon--a{
  top: 26%;
  left: 22%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212,168,67,0.2);
}
.page-home .home-sync__beacon--b{
  top: 30%;
  right: 32%;
  background: var(--color-electric);
  box-shadow: 0 0 0 4px rgba(57,210,242,0.18);
}
.page-home .home-sync__card--content{
  background:
    radial-gradient(120% 100% at 0% 100%, rgba(212,168,67,0.12), transparent 50%),
    linear-gradient(145deg, rgba(18,42,78,0.9), rgba(11,29,58,0.95));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}
.page-home .home-sync__head{
  margin-bottom: 0;
}
.page-home .home-sync__lead{
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-sync__points{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.page-home .home-sync__point{
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.page-home .home-sync__point-icon{
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(57,210,242,0.12);
  color: var(--color-electric);
  border: 1px solid rgba(57,210,242,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.page-home .home-sync__point-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-ice);
  margin: 0 0 0.2rem 0;
}
.page-home .home-sync__point-text{
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-moon);
  margin: 0;
}

@media (min-width: 768px){
  .page-home .home-sync__grid{
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Data */
.page-home .home-data{
  background: rgba(6,16,31,0.4);
  border-block: 1px solid rgba(176,196,222,0.08);
  position: relative;
  overflow: hidden;
}
.page-home .home-data::before{
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212,168,67,0.08), transparent 70%);
  pointer-events: none;
}
.page-home .home-data__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.page-home .home-data__card{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  justify-content: center;
  min-height: 200px;
}
.page-home .home-data__number{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--color-ice);
  letter-spacing: -0.02em;
  margin: 0;
}
.page-home .home-data__plus{
  color: var(--color-gold);
  font-size: 0.65em;
  margin-left: 0.1rem;
}
.page-home .home-data__label{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-ice);
  margin: 0;
}
.page-home .home-data__note{
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-data__card--gold{
  border-color: rgba(212,168,67,0.3);
}
.page-home .home-data__card--gold .home-data__number{
  color: var(--color-gold);
}
.page-home .home-data__card--gold .home-data__plus{
  color: var(--color-gold-bright);
}
.page-home .home-data__card--red{
  border-color: rgba(230,57,70,0.25);
}
.page-home .home-data__card--red .home-data__number{
  color: var(--color-red);
}
.page-home .home-data__card--timing{
  gap: 1rem;
  justify-content: flex-start;
}
.page-home .home-data__timing-index{
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}
.page-home .home-data__timing-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-home .home-data__timing-list li{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-moon);
}
.page-home .home-data__timing-tag{
  background: rgba(57,210,242,0.1);
  color: var(--color-electric);
  border: 1px solid rgba(57,210,242,0.25);
  border-radius: 6px;
  padding: 0.1rem 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  flex-shrink: 0;
  white-space: nowrap;
}
.page-home .home-data__card--texture{
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-home .home-data__figure{
  margin: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  overflow: hidden;
}
.page-home .home-data__figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.45;
}
.page-home .home-data__aside-content{
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 1.5rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-ice);
  background: linear-gradient(0deg, rgba(6,16,31,0.95) 30%, transparent);
}

@media (min-width: 768px){
  .page-home .home-data__grid{
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Newplus */
.page-home .home-newplus{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(212,168,67,0.08), transparent 45%),
    var(--color-deep);
}
.page-home .home-newplus__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.page-home .home-newplus__content{
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
}
.page-home .home-newplus__head{
  margin-bottom: 0;
}
.page-home .home-newplus__lead{
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-moon);
  max-width: 38rem;
  margin: 0;
}
.page-home .home-newplus__features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 38rem;
  width: 100%;
}
.page-home .home-newplus__feature{
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(18,42,78,0.6);
  border: 1px solid rgba(176,196,222,0.08);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  transition: border-color var(--ease) 0.25s, transform var(--ease) 0.25s;
}
.page-home .home-newplus__feature:hover{
  border-color: rgba(212,168,67,0.45);
  transform: translateX(4px);
}
.page-home .home-newplus__feature-icon{
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  line-height: 1.5;
  flex-shrink: 0;
}
.page-home .home-newplus__feature-text{
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-newplus__feature-text strong{
  color: var(--color-ice);
  font-family: var(--font-display);
  font-weight: 700;
}
.page-home .home-newplus__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.page-home .home-newplus__band{
  position: relative;
  z-index: 2;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  background: linear-gradient(135deg, rgba(212,168,67,0.9), rgba(212,168,67,0.55));
  padding-block: 2.5rem;
  padding-inline: 2rem;
  max-width: 100%;
}
.page-home .home-newplus__band-inner{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.page-home .home-newplus__band-text{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.9;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px rgba(6,16,31,0.4);
}
.page-home .home-newplus__diagonal{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(110deg, transparent 40%, rgba(230,57,70,0.35) 40%, rgba(230,57,70,0.35) 48%, transparent 48%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

@media (min-width: 992px){
  .page-home .home-newplus__inner{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
  .page-home .home-newplus__band{
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
  }
  .page-home .home-newplus__features{
    grid-template-columns: 1fr;
  }
}

/* Entry */
.page-home .home-entry{
  background: rgba(6,16,31,0.65);
  border-top: 1px solid rgba(176,196,222,0.06);
}
.page-home .home-entry__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.page-home .home-entry__card{
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  justify-content: flex-start;
}
.page-home .home-entry__index{
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--color-moon);
}
.page-home .home-entry__title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-ice);
  margin: 0;
}
.page-home .home-entry__desc{
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-moon);
  margin: 0;
}
.page-home .home-entry__card--nav{
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(57,210,242,0.06), transparent 55%),
    linear-gradient(145deg, rgba(18,42,78,0.9), rgba(11,29,58,0.95));
}
.page-home .home-entry__card--nav:nth-child(1){
  border-top: 3px solid var(--color-gold);
}
.page-home .home-entry__card--nav:nth-child(2){
  border-top: 3px solid var(--color-electric);
}
.page-home .home-entry__card--nav:nth-child(3){
  border-top: 3px solid var(--color-red);
}
.page-home .home-entry__stats-line{
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-moon);
  margin: 0.1rem 0;
}
.page-home .home-entry__stats-line strong{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-right: 0.2rem;
}
.page-home .home-entry__stats-line--note{
  font-size: 0.75rem;
  color: var(--color-moon);
  opacity: 0.8;
  margin-top: 0.6rem;
}
.page-home .home-entry__quote{
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-ice);
  font-style: italic;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--color-gold);
}
.page-home .home-entry__quote-source{
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  margin: 0;
}
.page-home .home-entry__contact-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ice);
  margin: 0;
}

@media (min-width: 768px){
  .page-home .home-entry__grid{
    grid-template-columns: repeat(12, 1fr);
  }
}

/* reveal protocol fallback */
.page-home [data-reveal]{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    transition: none !important;
    animation: none !important;
  }
}
