.page-home{
  --home-gutter:clamp(1rem,4vw,3rem);
  --home-num-size:clamp(2.5rem,6vw,4.5rem);
  background:var(--ink);
  color:var(--text-primary);
  font-family:var(--font);
  overflow-x:hidden;
}

.page-home .breadcrumb{
  display:flex;
  align-items:center;
  gap:.5rem;
  max-width:var(--max-width);
  margin-left:auto;
  margin-right:auto;
  padding:.875rem var(--home-gutter);
  border-bottom:2px solid var(--line);
  background:var(--ink);
  font-size:.8125rem;
  line-height:1.4;
}
.page-home .breadcrumb a{
  color:var(--text-secondary);
  text-decoration:none;
  transition:color 180ms var(--ease);
}
.page-home .breadcrumb a:hover{
  color:var(--accent-gold);
}
.page-home .breadcrumb-sep{
  color:var(--text-secondary);
}
.page-home .breadcrumb [aria-current="page"]{
  color:var(--text-primary);
  font-weight:600;
}

.page-home .home-preview,
.page-home .home-stats,
.page-home .home-expert,
.page-home .home-leagues,
.page-home .home-subscribe{
  position:relative;
  padding:clamp(2.5rem,6vw,5rem) var(--home-gutter);
}

.page-home .section-head,
.page-home .preview-grid,
.page-home .stats-row,
.page-home .stats-footnote,
.page-home .expert-layout,
.page-home .table-wrap,
.page-home .subscribe-band{
  max-width:var(--max-width);
  margin-left:auto;
  margin-right:auto;
}

.page-home .section-head{
  position:relative;
  z-index:1;
  margin-bottom:2rem;
}
.page-home .section-index{
  display:inline-block;
  margin-bottom:.5rem;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.22em;
  color:var(--accent-gold);
}
.page-home h1{
  margin:0 0 1rem;
  max-width:18em;
  font-size:clamp(2rem,6vw,3.75rem);
  font-weight:200;
  line-height:1.12;
  letter-spacing:-.02em;
}
.page-home h2{
  margin:0 0 .75rem;
  font-size:clamp(1.375rem,3.5vw,2.375rem);
  font-weight:300;
  line-height:1.2;
  color:inherit;
}
.page-home .page-intro{
  margin:0;
  max-width:52em;
  font-size:1rem;
  line-height:1.75;
  color:var(--text-secondary);
}

.page-home .home-preview{
  border-bottom:2px solid var(--line);
  overflow:hidden;
}
.page-home .preview-bg-img{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.22;
}
.page-home .preview-grid{
  position:relative;
  z-index:1;
  display:grid;
  gap:1rem;
}
.page-home .preview-card{
  display:flex;
  flex-direction:column;
  gap:.5rem;
  padding:1.25rem;
  background:var(--panel);
  border:2px solid var(--line);
  box-shadow:var(--shadow-hard);
  text-decoration:none;
  color:var(--text-primary);
  transition:transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.page-home .preview-card:hover{
  transform:translateY(-4px);
  box-shadow:8px 8px 0 rgba(0,0,0,.9);
  border-color:var(--brand-highlight);
}
.page-home .preview-card-num{
  font-size:.75rem;
  font-weight:800;
  color:var(--accent-gold);
  letter-spacing:.2em;
}
.page-home .preview-card h2{
  font-size:1.375rem;
  font-weight:500;
  line-height:1.25;
}
.page-home .preview-card p{
  margin:0;
  font-size:.875rem;
  line-height:1.65;
  color:var(--text-secondary);
}
.page-home .preview-card-action{
  margin-top:.25rem;
  align-self:flex-start;
  font-size:.8125rem;
  font-weight:600;
  color:var(--brand-highlight);
  border-bottom:2px solid currentColor;
  transition:color 180ms var(--ease);
}
.page-home .preview-card:hover .preview-card-action{
  color:var(--accent-gold);
}

.page-home .home-stats{
  background:var(--paper);
  color:var(--ink);
  border-bottom:2px solid var(--line-light);
}
.page-home .home-stats .page-intro{
  color:#4A4F58;
}
.page-home .stats-row{
  display:grid;
  gap:1.5rem;
}
.page-home .stats-grid{
  display:grid;
  gap:.875rem;
  grid-template-columns:1fr;
}
.page-home .home-stats .data-card{
  display:flex;
  flex-direction:column;
  gap:.25rem;
  padding:1.25rem 1rem;
  background:var(--white);
  border:2px solid var(--line-light);
  box-shadow:3px 3px 0 rgba(0,0,0,.12);
  transition:border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.page-home .home-stats .data-card:hover{
  border-color:var(--brand);
  box-shadow:5px 5px 0 rgba(11,61,46,.2);
}
.page-home .data-value{
  font-size:var(--home-num-size);
  font-weight:800;
  line-height:1;
  letter-spacing:-.02em;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}
.page-home .data-label{
  font-size:.8125rem;
  font-weight:600;
  line-height:1.4;
  color:var(--ink);
}
.page-home .data-note{
  font-size:.75rem;
  line-height:1.4;
  color:#5C6169;
}
.page-home .stat-tip{
  margin-top:.25rem;
  font-size:.75rem;
  font-weight:600;
  color:var(--brand);
  opacity:0;
  transform:translateY(4px);
  transition:opacity 200ms var(--ease), transform 200ms var(--ease);
}
.page-home .data-card:hover .stat-tip{
  opacity:1;
  transform:translateY(0);
}
.page-home .stats-media img{
  display:block;
  width:100%;
  height:auto;
  border:2px solid var(--line-light);
  box-shadow:var(--shadow-soft);
}
.page-home .stats-footnote{
  margin-top:1.5rem;
  padding-top:1.25rem;
  border-top:2px solid var(--line-light);
  font-size:.875rem;
  line-height:1.7;
  color:#4A4F58;
}
.page-home .fn-index{
  font-weight:800;
  color:var(--brand);
}

.page-home .home-expert{
  border-bottom:2px solid var(--line);
}
.page-home .expert-layout{
  display:grid;
  gap:1.5rem;
}
.page-home .expert-card img{
  display:block;
  width:100%;
  height:auto;
  border:2px solid var(--line);
  box-shadow:var(--shadow-hard);
}
.page-home .accordion{
  border-top:2px solid var(--line);
}
.page-home .accordion-item{
  border-bottom:2px solid var(--line);
}
.page-home .accordion-trigger{
  display:flex;
  align-items:center;
  gap:.625rem;
  width:100%;
  padding:1rem 0;
  background:transparent;
  border:0;
  color:var(--text-primary);
  font:inherit;
  font-size:.9375rem;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  transition:color 180ms var(--ease);
}
.page-home .accordion-trigger:hover{
  color:var(--accent-gold);
}
.page-home .accordion-icon{
  position:relative;
  flex:none;
  width:1rem;
  height:1rem;
}
.page-home .accordion-icon::before,
.page-home .accordion-icon::after{
  content:"";
  position:absolute;
  background:currentColor;
}
.page-home .accordion-icon::before{
  left:50%;
  top:2px;
  bottom:2px;
  width:2px;
  transform:translateX(-50%);
}
.page-home .accordion-icon::after{
  top:50%;
  left:2px;
  right:2px;
  height:2px;
  transform:translateY(-50%);
}
.page-home .expert-tag{
  margin-left:auto;
  padding:.25rem .5rem;
  background:var(--brand);
  color:var(--white);
  font-size:.6875rem;
  font-weight:700;
  letter-spacing:.08em;
  white-space:nowrap;
}
.page-home .accordion-panel{
  padding:.25rem 0 1rem;
}
.page-home .accordion-panel-inner{
  padding:.75rem .875rem;
  border-left:3px solid var(--brand-highlight);
  background:var(--panel-2);
}
.page-home .accordion-panel-inner p{
  margin:0 0 .75rem;
  font-size:.875rem;
  line-height:1.7;
  color:var(--text-secondary);
}
.page-home .expert-link{
  display:inline-block;
  font-size:.8125rem;
  font-weight:600;
  color:var(--accent-gold);
  text-decoration:none;
  border-bottom:2px solid currentColor;
  transition:color 180ms var(--ease);
}
.page-home .expert-link:hover{
  color:var(--brand-highlight);
}

.page-home .home-leagues{
  background:var(--paper);
  color:var(--ink);
  border-bottom:2px solid var(--line-light);
}
.page-home .home-leagues .page-intro{
  color:#4A4F58;
}
.page-home .table-wrap{
  overflow-x:auto;
  border:2px solid var(--line-light);
  background:var(--white);
}
.page-home .home-leagues table{
  width:100%;
  min-width:520px;
  border-collapse:collapse;
  font-size:.9375rem;
}
.page-home .home-leagues th,
.page-home .home-leagues td{
  padding:.875rem 1rem;
  text-align:left;
  border-bottom:1px solid var(--line-light);
}
.page-home .home-leagues th{
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.14em;
  color:var(--brand);
  background:var(--paper-2);
}
.page-home .home-leagues tr:last-child td{
  border-bottom:0;
}
.page-home .home-leagues td a{
  color:var(--signal-red);
  font-weight:600;
  text-decoration:none;
  border-bottom:2px solid transparent;
  transition:border-color 180ms var(--ease);
}
.page-home .home-leagues td a:hover{
  border-bottom-color:var(--signal-red);
}

.page-home .home-subscribe{
  text-align:center;
}
.page-home .home-subscribe .section-head{
  text-align:center;
}
.page-home .home-subscribe .page-intro{
  margin-left:auto;
  margin-right:auto;
}
.page-home .subscribe-band{
  margin:2rem auto;
  max-width:960px;
}
.page-home .subscribe-band img{
  display:block;
  width:100%;
  height:auto;
  border:2px solid var(--line);
  box-shadow:var(--shadow-hard);
}
.page-home .home-subscribe .btn{
  margin-top:.5rem;
}
.page-home .btn-primary{
  background:var(--brand);
  border:2px solid var(--brand);
  color:var(--white);
  transition:background 180ms var(--ease), border-color 180ms var(--ease);
}
.page-home .btn-primary:hover{
  background:var(--brand-highlight);
  border-color:var(--brand-highlight);
}

.page-home .card-strip{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem 1.25rem;
  max-width:var(--max-width);
  margin-left:auto;
  margin-right:auto;
  padding:1.5rem var(--home-gutter);
  border-top:2px solid var(--line);
}
.page-home .card-strip a{
  color:var(--text-secondary);
  text-decoration:none;
  font-size:.8125rem;
  font-weight:600;
  border-bottom:2px solid transparent;
  transition:color 200ms var(--ease), border-color 200ms var(--ease);
}
.page-home .card-strip a:hover{
  color:var(--accent-gold);
  border-bottom-color:currentColor;
}

@media (min-width:720px){
  .page-home .preview-grid{
    grid-template-columns:repeat(2,1fr);
    gap:1.25rem;
  }
  .page-home .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:1.25rem;
  }
}

@media (min-width:900px){
  .page-home .stats-row{
    grid-template-columns:1.3fr .8fr;
    align-items:center;
    gap:2.5rem;
  }
  .page-home .expert-layout{
    grid-template-columns:320px 1fr;
    align-items:start;
    gap:2.5rem;
  }
  .page-home h1{
    font-size:clamp(2.5rem,5vw,4.25rem);
  }
  .page-home .section-head{
    margin-bottom:2.5rem;
  }
}

@media (min-width:1100px){
  .page-home .home-preview,
  .page-home .home-stats,
  .page-home .home-expert,
  .page-home .home-leagues,
  .page-home .home-subscribe{
    padding-left:calc((100vw - var(--max-width)) / 2 + var(--home-gutter));
    padding-right:calc((100vw - var(--max-width)) / 2 + var(--home-gutter));
  }
  .page-home .breadcrumb,
  .page-home .card-strip{
    padding-left:calc((100vw - var(--max-width)) / 2 + var(--home-gutter));
    padding-right:calc((100vw - var(--max-width)) / 2 + var(--home-gutter));
  }
}
