.page-home{
  --home-glow: rgba(0,255,136,.14);
  --home-glow-gold: rgba(255,201,77,.16);
  --home-line: rgba(168,208,230,.14);
  background: var(--space-blue);
  position: relative;
  overflow: clip;
}

.page-home .home-hero{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 64px 0 48px;
  isolation: isolate;
}

.page-home .home-hero-bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home .home-hero-bg img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(10,20,40,.94) 0%, rgba(10,20,40,.76) 42%, rgba(13,27,42,.55) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0,255,136,.14) 0%, transparent 55%);
}

.page-home .home-hero::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-green) 40%, var(--gold) 80%, transparent);
  opacity: .8;
}

.page-home .home-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-home .home-hero-topline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 24px;
}

.page-home .home-hero-clock{
  font: 500 12px/1 var(--font-mono);
  color: var(--light-blue);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-home .home-hero-grid{
  display: grid;
  gap: 32px;
  margin-top: 20px;
}

.page-home .page-hero-title{
  font-family: var(--font-title);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  font-style: italic;
  font-weight: 900;
  color: var(--white);
  margin: 16px 0 20px;
  position: relative;
  padding-left: 14px;
}

.page-home .page-hero-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  bottom: .15em;
  width: 4px;
  background: var(--neon-green);
  transform: skewX(-12deg);
}

.page-home .home-hero-title-accent{
  color: var(--neon-green);
}

.page-home .page-hero-subtitle{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,247,250,.88);
  max-width: 58ch;
  margin: 0 0 28px;
}

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

.page-home .home-hero-index{
  background: rgba(13,27,42,.72);
  border: 1px solid var(--home-line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 14px, 100% 100%, 0 100%);
  margin-top: 8px;
}

.page-home .home-hero-index-title{
  display: block;
  font: 700 12px/1 var(--font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--home-line);
  padding-bottom: 12px;
}

.page-home .home-hero-index-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-home .home-hero-index-link{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  color: var(--light-blue);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border-left: 2px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.page-home .home-hero-index-link:hover,
.page-home .home-hero-index-link:focus-visible{
  background: rgba(0,255,136,.08);
  border-left-color: var(--neon-green);
  color: var(--white);
}

.page-home .home-hero-index-num{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--neon-green);
  background: rgba(0,255,136,.1);
  padding: 4px 7px;
  border-radius: 3px;
}

.page-home .home-section-head{
  margin-bottom: 32px;
}

.page-home .home-section-title{
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin: 12px 0 12px;
  position: relative;
  display: inline-block;
}

.page-home .home-section-title::after{
  content: "";
  display: block;
  height: 3px;
  width: 68px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--neon-green), transparent);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.page-home .home-section-intro{
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-blue);
  max-width: 74ch;
  margin: 0;
}

.page-home .home-dashboard{
  position: relative;
}

.page-home .home-dashboard::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,208,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,208,230,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-home .home-dashboard .container{
  position: relative;
  z-index: 1;
}

.page-home .dashboard-layout{
  display: grid;
  gap: 28px;
}

.page-home .dashboard-main-card{
  position: relative;
  background: linear-gradient(145deg, rgba(13,27,42,.9), rgba(10,20,40,.82));
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 24px;
  overflow: hidden;
}

.page-home .dashboard-main-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--neon-green);
  transform: scaleY(.4);
  transform-origin: top;
  transition: transform .3s var(--ease);
}

.page-home .dashboard-main-card:hover::before{
  transform: scaleY(1);
}

.page-home .dashboard-main-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .dashboard-main-meta{
  font: 500 12px/1.4 var(--font-mono);
  color: var(--steel-gray);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-home .dashboard-big-stat{
  margin-top: 24px;
}

.page-home .dashboard-big-stat .stat-value{
  font-family: var(--font-mono);
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 32px var(--home-glow-gold);
  letter-spacing: -.04em;
}

.page-home .dashboard-big-stat .stat-label{
  color: var(--light-blue);
}

.page-home .dashboard-main-note{
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-blue);
  margin: 16px 0 20px;
}

.page-home .dashboard-trend{
  width: 100%;
  height: auto;
  display: block;
  margin-top: 8px;
  background: rgba(168,208,230,.06);
  border: 1px solid var(--home-line);
  border-radius: 4px;
}

.page-home .dashboard-trend-line{
  fill: none;
  stroke: var(--neon-green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0,255,136,.45));
}

.page-home .dashboard-trend-dot{
  fill: var(--gold);
}

.page-home .dashboard-trend-dot-last{
  fill: var(--neon-green);
  stroke: var(--space-blue);
  stroke-width: 2;
}

.page-home .dashboard-side{
  display: grid;
  gap: 20px;
}

.page-home .dashboard-grid-small{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .dashboard-mini-card{
  background: rgba(13,27,42,.76);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.page-home .dashboard-mini-card:hover{
  transform: translateY(-4px) rotate(-1deg);
  border-color: rgba(0,255,136,.4);
}

.page-home .dashboard-mini-label{
  font: 600 12px/1.4 var(--font-mono);
  color: var(--steel-gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-home .dashboard-mini-value{
  font-family: var(--font-mono);
  font-size: 34px;
  line-height: 1;
  color: var(--white);
  font-weight: 700;
}

.page-home .dashboard-mini-unit{
  font-size: 14px;
  color: var(--light-blue);
  margin-left: 2px;
}

.page-home .dashboard-mini-tag{
  font-size: 12px;
  line-height: 1.4;
  color: var(--steel-gray);
}

.page-home .dashboard-visual{
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  background: var(--abyss-blue);
}

.page-home .dashboard-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .dashboard-visual::after,
.page-home .review-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,208,230,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,208,230,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-home .home-capability-bar{
  display: grid;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid var(--home-line);
  background: rgba(13,27,42,.6);
  border-radius: 6px;
  padding: 18px;
}

.page-home .home-capability-item{
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-home .home-capability-num{
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,201,77,.4);
  background: rgba(255,201,77,.08);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.page-home .home-capability-text{
  margin: 0;
  display: flex;
  flex-direction: column;
}

.page-home .home-capability-text strong{
  color: var(--white);
  font-size: 15px;
}

.page-home .home-capability-text small{
  color: var(--light-blue);
  font-size: 13px;
}

.page-home .home-section-head-split{
  display: grid;
  gap: 8px;
}

.page-home .possession-grid{
  display: grid;
  gap: 16px;
}

.page-home .possession-card{
  background: rgba(13,27,42,.78);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.page-home .possession-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--home-line);
  padding-bottom: 12px;
}

.page-home .possession-name{
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.page-home .possession-row{
  display: grid;
  grid-template-columns: 42px 1fr 48px;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
}

.page-home .possession-team{
  font-size: 12px;
  color: var(--light-blue);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.page-home .possession-bar{
  position: relative;
  height: 10px;
  background: rgba(168,208,230,.14);
  border-radius: 2px;
  overflow: hidden;
}

.page-home .possession-bar-fill{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.page-home .possession-bar-home{
  background: linear-gradient(90deg, var(--neon-green), rgba(0,255,136,.5));
}

.page-home .possession-bar-away{
  left: auto;
  right: 0;
  background: linear-gradient(90deg, rgba(255,201,77,.5), var(--gold));
}

.page-home .possession-value{
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

.page-home .possession-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.page-home .possession-meta{
  font: 500 12px/1.4 var(--font-mono);
  color: var(--steel-gray);
}

.page-home .possession-link{
  color: var(--neon-green);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid var(--neon-green);
  padding-bottom: 2px;
}

.page-home .possession-link:hover{
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.page-home .review-list{
  display: grid;
  gap: 18px;
}

.page-home .review-card{
  display: grid;
  gap: 16px;
  background: rgba(13,27,42,.78);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 16px;
}

.page-home .review-thumb{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--abyss-blue);
}

.page-home .review-thumb img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .review-body{
  display: grid;
  gap: 8px;
}

.page-home .review-tags{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .review-title{
  font-family: var(--font-title);
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.page-home .review-abstract{
  font-size: 14px;
  line-height: 1.65;
  color: var(--light-blue);
  margin: 0;
}

.page-home .review-link{
  color: var(--neon-green);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  justify-self: start;
  border-left: 3px solid var(--neon-green);
  padding-left: 10px;
}

.page-home .review-link:hover{
  color: var(--gold);
  border-left-color: var(--gold);
}

.page-home .home-ranking-wrap{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.page-home .home-ranking-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-ranking-bg img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-ranking-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10,20,40,.92) 10%, rgba(10,20,40,.55) 80%);
}

.page-home .home-ranking-inner{
  position: relative;
  z-index: 2;
  padding: 48px 0;
}

.page-home .home-ranking-content{
  max-width: 620px;
}

.page-home .home-ranking-desc{
  color: var(--light-blue);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 56ch;
}

.page-home .home-ranking-steps{
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 8px;
}

.page-home .home-ranking-steps li{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,247,250,.82);
  font-size: 14px;
}

.page-home .home-ranking-step-num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  border: 1px solid rgba(255,201,77,.4);
  padding: 2px 6px;
  border-radius: 2px;
}

.page-home .home-subscribe-grid{
  display: grid;
  gap: 28px;
}

.page-home .home-search-box{
  margin-top: 16px;
}

.page-home .home-search-suggest{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.page-home .home-suggest-label{
  font: 600 12px/1 var(--font-mono);
  color: var(--steel-gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-home .home-suggest-chip{
  font-size: 13px;
  color: var(--light-blue);
  border: 1px solid var(--home-line);
  border-radius: 20px;
  padding: 6px 10px;
  text-decoration: none;
  background: rgba(168,208,230,.06);
  transition: border-color .2s, color .2s, background .2s;
}

.page-home .home-suggest-chip:hover{
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(0,255,136,.06);
}

.page-home .home-entry-index{
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border-top: 1px solid var(--home-line);
  padding-top: 18px;
}

.page-home .home-entry-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-left: 2px solid transparent;
  background: rgba(168,208,230,.04);
  transition: background .2s, border-color .2s, color .2s;
}

.page-home .home-entry-item::before{
  content: "";
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  transform: rotate(45deg);
  flex: none;
}

.page-home .home-entry-item:hover{
  background: rgba(0,255,136,.08);
  border-left-color: var(--neon-green);
  color: var(--white);
}

.page-home .home-search-empty{
  display: none;
  color: var(--gold);
  font-size: 14px;
  padding: 12px;
  border: 1px dashed rgba(255,201,77,.4);
  margin-top: 12px;
}

.page-home .home-search-empty.is-visible{
  display: block;
}

.page-home .home-subscribe-card{
  background: linear-gradient(145deg, rgba(13,27,42,.92), rgba(10,20,40,.82));
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .home-subscribe-title{
  font-family: var(--font-title);
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

.page-home .home-subscribe-desc{
  color: var(--light-blue);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .home-subscribe-control{
  display: grid;
  gap: 10px;
}

.page-home .home-subscribe-email{
  width: 100%;
  box-sizing: border-box;
  background: rgba(10,20,40,.85);
  border: 1px solid var(--home-line);
  border-radius: 4px;
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.page-home .home-subscribe-email:focus{
  border-color: var(--neon-green);
}

.page-home .home-subscribe-hint{
  font-size: 12px;
  color: var(--steel-gray);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid var(--home-line);
  padding-top: 12px;
}

@media (min-width: 980px){
  .page-home .home-hero-grid{
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .dashboard-layout{
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
  }

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

  .page-home .dashboard-grid-small{
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .possession-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .review-card{
    grid-template-columns: 220px 1fr;
    align-items: center;
  }

  .page-home .home-capability-bar{
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-section-head-split{
    grid-template-columns: 1fr 1fr;
    align-items: end;
    justify-content: space-between;
  }

  .page-home .home-section-head-split .home-section-intro{
    justify-self: end;
    text-align: right;
  }

  .page-home .home-subscribe-grid{
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
  }

  .page-home .home-subscribe-control{
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1280px){
  .page-home .home-hero{
    min-height: 92vh;
  }

  .page-home .dashboard-main-card{
    padding: 32px;
  }

  .page-home .possession-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .review-card{
    grid-template-columns: 260px 1fr;
  }
}
