.page-home{
  --ph-space-blue: #0B1D3A;
  --ph-green: #39FF14;
  --ph-orange: #FF6B00;
  --ph-teal: #005F6A;
  --ph-wine: #7B2D3E;
  --ph-light: #E8EDF2;
  --ph-white: #FFFFFF;
  --ph-dark: #12182B;
  --ph-muted: #6B7A8F;
  --ph-glass: rgba(255,255,255,0.08);
  --ph-font-head: 'Playfair Display', 'Noto Serif SC', serif;
  --ph-font-body: 'Inter', 'Noto Sans SC', sans-serif;
  --ph-ease: cubic-bezier(0.22,1,0.36,1);
  background: var(--ph-space-blue);
  color: var(--ph-light);
  font-family: var(--ph-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-home .container{
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home a{
  color: inherit;
  text-decoration: none;
}

.page-home .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--ph-green);
  color: var(--ph-dark);
  font-weight: 800;
  font-size: 15px;
  border-radius: 2px 8px 2px 8px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  transition: transform 0.3s var(--ph-ease), box-shadow 0.3s var(--ph-ease);
}

.page-home .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57,255,20,0.25);
}

.page-home .btn-secondary{
  background: transparent;
  color: var(--ph-white);
  border: 1px solid var(--ph-orange);
  box-shadow: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.page-home .btn-secondary:hover{
  background: rgba(255,107,0,0.12);
  box-shadow: 0 8px 24px rgba(255,107,0,0.18);
}

.page-home .visually-hidden{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page-home .ph-hero{
  position: relative;
  isolation: isolate;
  padding: 80px 0 56px;
  overflow: hidden;
}

.page-home .ph-hero-bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(0.9);
}

.page-home .ph-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,29,58,0.97) 0%, rgba(11,29,58,0.86) 48%, rgba(11,29,58,0.66) 100%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(57,255,20,0.08) 24px 25px);
}

.page-home .ph-hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--ph-green) 0 4px, transparent 4px 12px);
  opacity: 0.7;
  z-index: 2;
  transition: opacity 0.4s var(--ph-ease);
}

.page-home .ph-hero::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35));
  z-index: 1;
}

.page-home .ph-hero:hover::before{
  animation: ph-hover-line 1s linear infinite;
}

.page-home .ph-hero-inner{
  position: relative;
}

.page-home .ph-crumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(232,237,242,0.7);
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.page-home .ph-crumb-current{
  color: var(--ph-green);
}

.page-home .ph-crumb-slash{
  color: var(--ph-orange);
}

.page-home .ph-hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-home .ph-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ph-green);
  margin-bottom: 14px;
}

.page-home .ph-eyebrow-dot{
  width: 8px;
  height: 8px;
  background: var(--ph-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ph-green);
}

.page-home .ph-hero h1{
  font-family: var(--ph-font-head);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.12;
  color: var(--ph-white);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.page-home .ph-hero-lead{
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--ph-light);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 28px;
  border-left: 4px solid var(--ph-orange);
  padding-left: 18px;
}

.page-home .ph-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.page-home .ph-fact-list{
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.page-home .ph-fact-list li{
  position: relative;
  font-size: 13px;
  color: rgba(232,237,242,0.85);
  padding-left: 18px;
}

.page-home .ph-fact-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--ph-green);
}

.page-home .ph-panel-wrap{
  position: relative;
}

.page-home .ph-panel-frame{
  position: relative;
  border: 1px solid rgba(57,255,20,0.4);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 0 60px rgba(57,255,20,0.04);
}

.page-home .ph-panel-frame::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ph-green), transparent);
}

.page-home .ph-panel-img{
  width: 100%;
  border-radius: 2px;
}

.page-home .ph-panel-gloss{
  position: absolute;
  inset: 12px;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, transparent 40%);
  border-radius: 2px;
}

.page-home .ph-panel-tag{
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--ph-orange);
  color: var(--ph-white);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
  transform: rotate(2deg);
}

.page-home .ph-panel-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 14px 4px;
  font-size: 13px;
}

.page-home .ph-panel-meta span:first-child{
  color: var(--ph-green);
  font-weight: 700;
}

.page-home .ph-panel-meta .ph-panel-version{
  color: var(--ph-light);
  background: rgba(255,255,255,0.06);
  border-left: 2px solid var(--ph-orange);
  padding: 4px 10px;
}

.page-home .ph-panel-caption{
  font-size: 13px;
  color: rgba(232,237,242,0.66);
  margin: 14px 0 0;
  line-height: 1.7;
}

.page-home .ph-scroll-hint{
  display: block;
  width: 22px;
  height: 36px;
  margin: 48px auto 0;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 14px;
  position: relative;
  transition: border-color 0.3s;
}

.page-home .ph-scroll-hint span{
  display: block;
  width: 3px;
  height: 6px;
  background: var(--ph-green);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: ph-scroll 1.8s ease-in-out infinite;
}

.page-home .ph-scroll-hint span:nth-child(2){
  animation-delay: 0.18s;
  opacity: 0.7;
}

.page-home .ph-scroll-hint span:nth-child(3){
  animation-delay: 0.36s;
  opacity: 0.4;
}

.page-home .ph-section-head{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 20px;
}

.page-home .ph-section-index{
  font-family: var(--ph-font-head);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 900;
  line-height: 0.85;
  color: rgba(57,255,20,0.2);
  margin: 0;
  padding-right: 16px;
  border-right: 2px solid var(--ph-orange);
}

.page-home .ph-section-heading{
  flex: 1;
}

.page-home .ph-section-heading h2{
  font-family: var(--ph-font-head);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--ph-white);
  margin: 0 0 6px;
  line-height: 1.2;
}

.page-home .ph-sec-desc{
  font-size: 14px;
  line-height: 1.75;
  color: rgba(232,237,242,0.75);
  margin: 0;
  max-width: 760px;
}

.page-home .ph-section-head-invert{
  border-bottom-color: rgba(57,255,20,0.22);
}

.page-home .ph-section-head-invert .ph-section-index{
  color: rgba(255,107,0,0.28);
}

.page-home .ph-leagues{
  padding: 72px 0 40px;
  position: relative;
}

.page-home .ph-leagues::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 140px;
  height: 140px;
  background: repeating-linear-gradient(90deg, rgba(57,255,20,0.16) 0 1px, transparent 1px 14px);
  opacity: 0.35;
  pointer-events: none;
}

.page-home .ph-league-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .ph-league-card{
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--ph-green);
  padding: 20px 18px 18px;
  border-radius: 2px 10px 2px 10px;
  transition: transform 0.35s var(--ph-ease), background 0.35s, border-color 0.35s;
  overflow: hidden;
}

.page-home .ph-league-card.ph-tilt{
  transform: rotate(-0.4deg);
}

.page-home .ph-league-card.ph-delay-1{
  transform: rotate(0.3deg);
}

.page-home .ph-league-card.ph-delay-2{
  transform: rotate(-0.2deg);
}

.page-home .ph-league-card.ph-delay-3{
  transform: rotate(0.4deg);
}

.page-home .ph-league-card.ph-delay-4{
  transform: rotate(-0.3deg);
}

.page-home .ph-league-card:hover{
  background: rgba(57,255,20,0.1);
  border-color: rgba(57,255,20,0.5);
  transform: translateY(-4px) rotate(0deg);
}

.page-home .ph-league-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-home .ph-league-code{
  font-family: var(--ph-font-head);
  font-size: 28px;
  font-weight: 900;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.04em;
}

.page-home .ph-league-live{
  background: rgba(255,107,0,0.2);
  color: var(--ph-orange);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%);
  letter-spacing: 0.08em;
}

.page-home .ph-league-card h3{
  font-family: var(--ph-font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--ph-white);
  margin: 0 0 6px;
}

.page-home .ph-league-card p{
  font-size: 13px;
  color: rgba(232,237,242,0.68);
  margin: 0;
  line-height: 1.6;
}

.page-home .ph-league-hover{
  margin-top: 12px;
  display: none;
  gap: 12px;
  align-items: center;
  background: rgba(0,0,0,0.28);
  padding: 8px 12px;
  font-size: 12px;
  border-left: 2px solid var(--ph-green);
}

.page-home .ph-league-hover strong{
  color: var(--ph-green);
  font-size: 16px;
}

.page-home .ph-league-card:hover .ph-league-hover{
  display: flex;
  animation: ph-card-in 0.35s var(--ph-ease);
}

.page-home .ph-league-more{
  border-left-color: var(--ph-orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .ph-league-link{
  display: inline-block;
  margin-top: 14px;
  color: var(--ph-green);
  font-size: 13px;
  font-weight: 700;
}

.page-home .ph-league-feature{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.page-home .ph-league-feature img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.page-home .ph-league-feature-copy{
  padding: 24px 22px;
}

.page-home .ph-mini-tag{
  display: inline-block;
  background: rgba(57,255,20,0.14);
  color: var(--ph-green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.page-home .ph-league-feature-copy h3{
  font-family: var(--ph-font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ph-white);
  margin: 0 0 10px;
}

.page-home .ph-league-feature-copy p{
  font-size: 14px;
  color: rgba(232,237,242,0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-home .ph-text-link{
  color: var(--ph-orange);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,107,0,0.4);
  padding-bottom: 2px;
}

.page-home .ph-live{
  padding: 64px 0;
  background:
    linear-gradient(160deg, rgba(0,95,106,0.18) 0%, transparent 60%),
    rgba(255,255,255,0.02);
}

.page-home .ph-live-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .ph-live-stats{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .ph-live-stat{
  background: var(--ph-glass);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  position: relative;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.page-home .ph-live-stat:hover{
  border-color: rgba(57,255,20,0.38);
}

.page-home .ph-live-stat-label{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ph-orange);
  margin-bottom: 6px;
}

.page-home .ph-live-stat-value{
  display: block;
  font-family: var(--ph-font-head);
  font-size: 34px;
  font-weight: 900;
  color: var(--ph-white);
  line-height: 1;
}

.page-home .ph-live-stat-value i{
  font-style: normal;
  color: var(--ph-green);
}

.page-home .ph-live-stat-note{
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(232,237,242,0.55);
}

.page-home .ph-live-viz{
  position: relative;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  padding: 14px;
}

.page-home .ph-live-viz img{
  width: 100%;
  border-radius: 2px;
}

.page-home .ph-yellow-card{
  position: absolute;
  top: 28px;
  left: 28px;
}

.page-home .ph-red-card{
  position: absolute;
  top: 28px;
  left: 58px;
}

.page-home .ph-live-legend{
  list-style: none;
  margin: 12px 0 0;
  padding: 10px 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12px;
  color: rgba(232,237,242,0.75);
  border-top: 1px dashed rgba(255,255,255,0.16);
}

.page-home .ph-live-legend li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .ph-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.page-home .ph-dot-green{
  background: var(--ph-green);
}

.page-home .ph-dot-orange{
  background: var(--ph-orange);
}

.page-home .ph-dot-teal{
  background: var(--ph-teal);
}

.page-home .ph-live-facts{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 22px;
  border-radius: 2px;
}

.page-home .ph-live-facts h3{
  font-family: var(--ph-font-head);
  font-size: 22px;
  color: var(--ph-white);
  margin: 0 0 14px;
}

.page-home .ph-live-facts ul{
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .ph-live-facts li{
  position: relative;
  font-size: 13px;
  color: rgba(232,237,242,0.8);
  padding-left: 26px;
  line-height: 1.55;
}

.page-home .ph-live-facts li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  background: var(--ph-green);
  box-shadow: 4px 0 0 var(--ph-orange);
}

.page-home .ph-search{
  padding: 72px 0 56px;
  position: relative;
}

.page-home .ph-search::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 100%;
  background: radial-gradient(circle at 90% 20%, rgba(255,107,0,0.08), transparent 60%);
  pointer-events: none;
}

.page-home .ph-search-console{
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 28px 22px;
  margin-bottom: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.page-home .ph-search-console::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 80px;
  height: 4px;
  background: var(--ph-green);
}

.page-home .ph-search-box{
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11,29,58,0.85);
  border: 1px solid rgba(57,255,20,0.25);
  padding: 6px 14px 6px 6px;
  border-radius: 4px;
  color: var(--ph-muted);
}

.page-home .ph-search-box:focus-within{
  border-color: var(--ph-green);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.12);
}

.page-home .ph-search-box svg{
  flex: 0 0 auto;
  margin-left: 10px;
}

.page-home .ph-search-box input{
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ph-white);
  font-size: 15px;
  padding: 12px 0;
  font-family: var(--ph-font-body);
}

.page-home .ph-search-box input::placeholder{
  color: rgba(232,237,242,0.4);
}

.page-home .ph-search-shortcut{
  font-size: 12px;
  color: rgba(232,237,242,0.4);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 3px 8px;
  border-radius: 3px;
}

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

.page-home .ph-search-suggest-label{
  font-size: 12px;
  color: var(--ph-orange);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-home .ph-search-suggest a{
  font-size: 13px;
  background: rgba(57,255,20,0.1);
  color: var(--ph-green);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.3s;
}

.page-home .ph-search-suggest a:hover{
  background: rgba(57,255,20,0.22);
}

.page-home .ph-search-hint{
  font-size: 13px;
  color: rgba(232,237,242,0.6);
  margin: 18px 0 0;
  line-height: 1.7;
  border-top: 1px dashed rgba(255,255,255,0.14);
  padding-top: 14px;
}

.page-home .ph-search-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .ph-search-filter{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 20px;
  border-radius: 2px;
  transition: transform 0.3s var(--ph-ease), border-color 0.3s;
}

.page-home .ph-search-filter:hover{
  transform: translateX(6px);
  border-color: rgba(255,107,0,0.3);
}

.page-home .ph-search-filter h3{
  font-family: var(--ph-font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--ph-white);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .ph-search-filter h3::before{
  content: "";
  width: 16px;
  height: 4px;
  background: var(--ph-orange);
  border-radius: 2px;
}

.page-home .ph-search-filter p{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(232,237,242,0.68);
  margin: 0;
}

.page-home .ph-cases{
  padding: 64px 0 56px;
  background:
    linear-gradient(120deg, rgba(123,45,62,0.1) 0%, transparent 38%),
    rgba(255,255,255,0.02);
}

.page-home .ph-case-panel{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  border-radius: 4px 20px 4px 4px;
  position: relative;
  overflow: hidden;
}

.page-home .ph-case-number{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255,107,0,0.14);
  border-left: 4px solid var(--ph-orange);
  min-width: 130px;
}

.page-home .ph-case-number span{
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ph-orange);
  font-weight: 700;
}

.page-home .ph-case-number strong{
  font-family: var(--ph-font-head);
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  color: var(--ph-white);
}

.page-home .ph-case-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .ph-case-tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ph-green);
  background: rgba(57,255,20,0.12);
  padding: 5px 10px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.page-home .ph-case-body h3{
  font-family: var(--ph-font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ph-white);
  margin: 0 0 10px;
}

.page-home .ph-case-body p{
  font-size: 14px;
  color: rgba(232,237,242,0.72);
  line-height: 1.75;
  margin: 0 0 14px;
}

.page-home .ph-case-meta{
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: rgba(232,237,242,0.8);
}

.page-home .ph-case-meta li{
  position: relative;
  padding-left: 20px;
}

.page-home .ph-case-meta li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid var(--ph-green);
  border-radius: 50%;
}

.page-home .ph-case-timeline{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.16);
}

.page-home .ph-case-timeline span{
  font-size: 11px;
  color: rgba(232,237,242,0.55);
  white-space: nowrap;
}

.page-home .ph-case-timeline i{
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ph-orange) 0 6px, transparent 6px 12px);
}

.page-home .ph-case-cta{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(0,95,106,0.2);
  border: 1px solid rgba(0,95,106,0.45);
  padding: 24px;
  border-radius: 2px;
}

.page-home .ph-case-cta h3{
  font-family: var(--ph-font-head);
  font-size: 22px;
  color: var(--ph-white);
  margin: 0 0 6px;
}

.page-home .ph-case-cta p{
  font-size: 14px;
  color: rgba(232,237,242,0.72);
  margin: 0;
}

.page-home .ph-case-cta-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .ph-index{
  padding: 56px 0 40px;
}

.page-home .ph-index-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .ph-index-grid > div{
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 22px;
  border-radius: 2px;
  position: relative;
  transition: background 0.3s;
}

.page-home .ph-index-grid > div:hover{
  background: rgba(255,255,255,0.08);
}

.page-home .ph-index-grid h3{
  font-family: var(--ph-font-head);
  font-size: 18px;
  color: var(--ph-white);
  margin: 0 0 6px;
}

.page-home .ph-index-grid p{
  font-size: 13px;
  color: rgba(232,237,242,0.66);
  margin: 0 0 12px;
  line-height: 1.6;
}

.page-home .ph-index-link{
  font-size: 13px;
  font-weight: 700;
  color: var(--ph-green);
}

.page-home .ph-index-icp{
  text-align: center;
  font-size: 12px;
  color: rgba(232,237,242,0.4);
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@keyframes ph-scroll{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(10px); opacity: 0.2; }
  100%{ transform: translateY(14px); opacity: 0; }
}

@keyframes ph-hover-line{
  0%{ background-position: 0 0; opacity: 0.7; }
  50%{ opacity: 1; }
  100%{ background-position: 52px 0; opacity: 0.7; }
}

@keyframes ph-card-in{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ph-ease), transform 0.7s var(--ph-ease);
}

[data-reveal].is-revealed{
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px){
  .page-home .ph-league-grid{
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .page-home .ph-case-panel{
    grid-template-columns: 180px 1fr;
  }

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

@media (min-width: 1024px){
  .page-home .container{
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-home .ph-hero{
    padding: 96px 0 64px;
  }

  .page-home .ph-hero-grid{
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 72px;
    align-items: center;
  }

  .page-home .ph-hero h1{
    font-size: clamp(44px, 4vw, 56px);
  }

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

  .page-home .ph-league-feature{
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .page-home .ph-live-grid{
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
  }

  .page-home .ph-live-stats{
    grid-template-columns: 1fr;
    padding: 0 14px 0 0;
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .page-home .ph-live-viz{
    border-radius: 0;
    border-width: 0 1px;
  }

  .page-home .ph-live-facts{
    border-radius: 0 4px 4px 0;
    border-width: 0 0 0 1px;
  }

  .page-home .ph-search-console{
    padding: 36px 40px;
  }

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

  .page-home .ph-case-panel{
    padding: 32px 36px;
  }

  .page-home .ph-case-cta{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
  }

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

  .page-home .ph-index{
    padding-bottom: 56px;
  }
}

@media (min-width: 1280px){
  .page-home .ph-live-grid{
    gap: 0;
  }

  .page-home .ph-live-viz{
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-home [data-reveal]{
    opacity: 1;
    transform: none;
  }

  .page-home .ph-league-card.ph-tilt,
  .page-home .ph-league-card.ph-delay-1,
  .page-home .ph-league-card.ph-delay-2,
  .page-home .ph-league-card.ph-delay-3,
  .page-home .ph-league-card.ph-delay-4{
    transform: none;
  }
}
