/* Critical first-paint CSS for hub pages (header + home hero).
 * Full styles: ./hub.css + ./hub-*.css + ./components.css (blocking).
 */

*, *::before, *::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body{
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, var(--color-primary-a08), transparent);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}
a{
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover{
  color: var(--color-primary);
}
ul, ol{
  list-style: none;
}
h1, h2, h3, h4, h5, h6{
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
}
h1{ font-size: var(--text-5xl); font-weight: 800; }
h2{
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h3{
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h4{ font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }
p{
  line-height: 1.7;
  color: var(--color-text-secondary);
}
.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 21, 16, 0.72);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.site-header.scrolled{
  background: rgba(5, 21, 16, 0.97);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.02);
  border-bottom-color: rgba(255,255,255,0.07);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  gap: var(--spacing-sm);
}
.logo{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  min-height: 44px;
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}
.logo:hover{
  filter: brightness(1.15);
}
.logo span{
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo span.logo-text{
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--color-text-primary);
  -webkit-text-fill-color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  padding: 10px 16px 10px 10px;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}
.logo-icon{
  padding: 10px 10px 10px 14px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  letter-spacing: -0.02em;
}
.nav-menu{
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  padding: 4px;
  flex-shrink: 1;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav-menu::-webkit-scrollbar{
  display: none;
}
.nav-menu a{
  color: var(--color-text-faint);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-menu a:hover{
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}
.nav-menu a.active{
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-a25), rgba(38,184,110,0.15));
  box-shadow: 0 1px 8px var(--color-primary-a20), inset 0 0 0 1px var(--color-primary-a25);
  font-weight: 600;
  border: none;
}
.header-bonus-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--header-control-h, 40px);
  height: var(--header-control-h, 40px);
  padding: 0 16px;
  background: var(--gradient-gold);
  color: var(--color-gold-ink);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-btn, 10px);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--color-gold-a35);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: none;
}
.header-bonus-btn::before{
  /* Shine animation: see css/components.css */
}
.header-bonus-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 24px rgba(224, 184, 58, 0.4);
  color: var(--color-gold-ink);
}
.btn-text-short{
  display: none;
}
@keyframes btnShine{
  0% { left: -100%; }
  40% { left: 120%; }
  100% { left: 120%; }
}
@keyframes bonusPulse{
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.mobile-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.mobile-toggle:hover{
  background: rgba(255,255,255,0.05);
}
.mobile-toggle span{
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}
.mobile-toggle.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2){
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3){
  transform: rotate(-45deg) translate(5px, -5px);
}
@keyframes float-slow{
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
.hero-text h1 span.gold-text,
.page-hero h1 span.gold-text,
h1 .gold-text,
h2 .gold-text,
h3 .gold-text,
.hero-text h1 .gold-text,
.page-hero h1 .gold-text{
  display: inline-block;
  color: var(--color-gold-light);
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--color-gold-light);
  padding: 0 0.06em;
  line-height: inherit;
  overflow: visible;
  filter: none;
}
.page-hero{
  padding: calc(68px + 1.25rem) 0 1.5rem;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero > .container{
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.page-hero::before{
  display: none;
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(38,184,110,0.12) 0%, rgba(38,184,110,0.04) 35%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 20s ease-in-out infinite;
}
@keyframes float-slow{
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.03); }
}
.page-hero::after{
  display: none;
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(38,184,110,0.07) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 25s ease-in-out infinite reverse;
}
.page-hero h1{
  margin: 0 0 0.5rem;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.page-hero h1 .win-brand{
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
}
.page-hero p{
  position: relative;
  margin: 0;
  max-width: 800px;
  text-align: left;
  color: var(--color-text-faint);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.65;
}
.page-hero-eyebrow{
  display: block;
  width: fit-content;
  padding: 0;
  margin: 0 0 0.4rem;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
  position: relative;
}
.page-hero-eyebrow::before{
  display: none;
  content: none;
}
@keyframes eyebrowPulse{
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.page-hero-chips{
  display: none !important;
}
.page-hero-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.page-hero-chip:hover{ /* no decorative hover */ }
.chip-icon{ font-size: var(--text-lg); filter: saturate(1.2); }
.review-hero-badge{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background: linear-gradient(165deg, rgba(8, 28, 20, 0.85) 0%, rgba(5, 21, 16, 0.95) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 32px;
  padding: 0;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 0 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(30px);
  box-shadow: 
    0 30px 100px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
}
.review-hero-badge:hover{ /* no decorative hover */ }
.review-hero-badge::before{
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,184,110,0.7) 30%, rgba(16,185,129,0.6) 70%, transparent);
  opacity: 0.8;
}
.review-hero-badge::after{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(38,184,110,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 50%, rgba(16,185,129,0.04) 0%, transparent 45%);
  pointer-events: none;
}
.review-hero-score{
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 22px 22px 26px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: stretch;
}
.review-hero-score::before,
.review-hero-score::after{
  content: '';
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(148, 163, 184, 0.28) 80%,
    transparent 100%
  );
  pointer-events: none;
}
.review-hero-score::before{
  left: calc(26px + 118px + 18px);
}
.review-hero-score::after{
  right: 0;
}
.review-hero-ring{
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-hero-ring::before{
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, rgba(38,184,110,0.06) 45%, transparent 72%);
  animation: ringPulseHero 3s ease-in-out infinite;
}
@keyframes ringPulseHero{
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.06); opacity: 1; }
}
.review-hero-ring svg{
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 0 10px rgba(16,185,129,0.35)) drop-shadow(0 0 22px var(--color-primary-a20));
  animation: ringGlow 4s ease-in-out infinite;
}
@keyframes ringGlow{
  0%, 100% { filter: drop-shadow(0 0 8px var(--color-primary-a30)) drop-shadow(0 0 18px rgba(16,185,129,0.15)); }
  50% { filter: drop-shadow(0 0 12px rgba(38,184,110,0.45)) drop-shadow(0 0 26px rgba(16,185,129,0.22)); }
}
.review-hero-ring-value{
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(160deg, #ffffff 35%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 2;
}
.review-hero-meta{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  padding: 4px 8px 4px 22px;
  margin-left: 18px;
  align-self: stretch;
  position: relative;
}
.review-hero-logo{
  height: 32px;
  width: auto;
  max-width: 148px;
  max-height: 36px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0 0 2px;
}
.review-hero-label{
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(186, 198, 216, 0.72);
  font-weight: 700;
  line-height: 1.2;
}
.review-hero-stars{
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fbbf24;
  line-height: 1;
}
.review-hero-stars svg{
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.35));
}
.review-hero-updated{
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.625rem;
  letter-spacing: 0.02em;
  color: rgba(186, 198, 216, 0.7);
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.review-hero-highlights{
  display: flex;
  flex: 1 1 auto;
  gap: 0;
  margin-left: 0;
  border-left: none;
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: stretch;
}
.review-hero-highlight{
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 20px 10px;
  position: relative;
  transition: background 0.3s ease;
}
.review-hero-highlight:not(:last-child)::after{
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(148, 163, 184, 0.28) 80%,
    transparent 100%
  );
}
.review-hero-highlight:hover{ /* no decorative hover */ }
.review-hero-highlight-value{
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, rgba(38,184,110,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.review-hero-highlight-label{
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px){.review-hero-badge{
    flex-direction: column;
    border-radius: 20px;
  }.review-hero-score{
    padding: 24px 20px 18px;
    justify-content: center;
  }.review-hero-score::before{
    display: none;
  }.review-hero-score::after{
    display: none;
  }.review-hero-meta{
    padding-left: 8px;
    margin-left: 0;
  }.review-hero-highlights{
    border-left: none;
    border-top: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
  }.review-hero-highlights::before{
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(148, 163, 184, 0.28) 20%,
      rgba(148, 163, 184, 0.28) 80%,
      transparent 100%
    );
  }.review-hero-highlight{
    padding: 16px 12px;
  }.review-hero-highlight::after{
    display: none;
  }}
@keyframes ringGlow{
  0%, 100% { filter: drop-shadow(0 0 10px rgba(38,184,110,0.35)) drop-shadow(0 0 20px rgba(16,185,129,0.15)); }
  50% { filter: drop-shadow(0 0 16px rgba(38,184,110,0.55)) drop-shadow(0 0 30px rgba(16,185,129,0.25)); }
}
.fade-in{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left{
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-left.visible{
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right{
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-right.visible{
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px){.header-inner{
    padding: 0 var(--spacing-md);
  }.nav-menu a{
    font-size: var(--text-xs);
        padding: 6px 10px;
  }.header-bonus-btn{
    padding: 0 14px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.02em;
  }}
@media (max-width: 700px){.header-inner{
    height: 64px;
        padding: 0 var(--spacing-lg);
  }.header-bonus-btn{
    padding: 0 12px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.02em;
  }.nav-menu{
    position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(10,15,26,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        border: none;
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-xs);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-normal), opacity var(--transition-normal);
        overflow-x: visible;
        overflow-y: auto;
        max-height: calc(100vh - 64px);
  }.nav-menu.active{
    transform: translateY(0);
        opacity: 1;
        pointer-events: all;
  }.nav-menu a{
    width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: var(--radius-sm);
        font-size: var(--text-sm);
  }.mobile-toggle{
    display: flex;
  }}
@media (max-width: 768px){.container{
    padding: 0 var(--spacing-md);
  }}
@media (max-width: 480px){.header-inner{
    height: 60px;
        padding: 0 var(--spacing-md);
  }.logo-icon{
    padding: 8px 8px 8px 12px;
    font-size: var(--text-md);
  }.logo span.logo-text{
    padding: 8px 12px 8px 8px;
    font-size: var(--text-md);
  }.header-bonus-btn{
    padding: 0 12px;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.02em;
  }.btn-text-full{
    display: none;
  }.btn-text-short{
    display: inline;
  }.nav-menu{
    top: 60px;
        max-height: calc(100vh - 60px);
  }}
.win-brand{
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1;
  background: none;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--color-gold-light);
  color: var(--color-gold-light);
  padding: 0.05em 0.1em;
}
.page-hero,
.site-header,
.review-hero-badge{
  content-visibility: visible;
}

/* Critical: keep above-fold fade-in visible before async CSS */
.page-hero .fade-in{opacity:1!important;transform:none!important;}

/* First paint: hero visible before IntersectionObserver */
.page-hero .fade-in{opacity:1!important;transform:none!important}

/* Offscreen review blocks: cut first-pass layout work */
.review-section{content-visibility:auto;contain-intrinsic-size:auto 560px}
#bonuses.review-section{contain-intrinsic-size:auto 720px}
#payments.review-section{contain-intrinsic-size:auto 420px}
#sections.review-section{contain-intrinsic-size:auto 380px}
#mobile.review-section{contain-intrinsic-size:auto 450px}
#security.review-section{contain-intrinsic-size:auto 600px}
#registration.review-section{contain-intrinsic-size:auto 700px}
#sportsbook.review-section{contain-intrinsic-size:auto 800px}
#product-access.review-section{contain-intrinsic-size:auto 820px}
#faq.review-section{contain-intrinsic-size:auto 1100px}
article[id^="compare-"].review-section{contain-intrinsic-size:auto 1200px}
.stats-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:var(--spacing-md)}
.stats-strip.stats-strip--2col{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:640px){.stats-strip.stats-strip--2col{grid-template-columns:1fr}}

/* ——— Home hero (above-fold) ——— */
/* ——— Homepage hero: brand-first ranking stage ——— */
.hero--home {
  --hero-ink: #040e0a;
  --hero-line: rgba(255, 224, 122, 0.75);
  position: relative;
  isolation: isolate;
  padding: calc(68px + clamp(3.25rem, 7vw, 5.25rem)) 0 clamp(2.75rem, 5vw, 4rem);
  overflow-x: clip;
  overflow-y: visible;
  background:
    linear-gradient(180deg, rgba(5, 21, 16, 0.15) 0%, var(--hero-ink) 100%),
    radial-gradient(90% 70% at 85% 35%, rgba(240, 196, 58, 0.2), transparent 58%),
    radial-gradient(70% 55% at 18% 70%, rgba(240, 196, 58, 0.16), transparent 55%),
    radial-gradient(50% 40% at 50% 0%, rgba(38, 184, 110, 0.14), transparent 50%),
    linear-gradient(118deg, #051510 0%, #0a1f16 48%, #040e0a 100%);
}
.hero--home::before,
.hero--home::after {
  display: none;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-stage__rail {
  position: absolute;
  top: 10%;
  right: max(-20px, 6vw);
  width: min(46vw, 560px);
  height: 80%;
  border-left: 1px solid rgba(240, 196, 58, 0.28);
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 44px,
      rgba(240, 196, 58, 0.12) 44px,
      rgba(240, 196, 58, 0.12) 45px
    );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
  opacity: 1;
}
.hero-stage__rail::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 14%;
  width: 2px;
  height: 52%;
  background: linear-gradient(180deg, transparent, var(--hero-line), transparent);
  animation: hero-rail-pulse 5.5s ease-in-out infinite;
}
.hero-stage__mark {
  position: absolute;
  right: max(0vw, 4px);
  bottom: -6%;
  width: min(48vw, 540px);
  height: auto;
  color: rgba(255, 224, 122, 0.28);
  overflow: visible;
  user-select: none;
  transform: translateY(4%);
  opacity: 0.26;
  animation: hero-mark-drift 14s ease-in-out infinite;
}
.hero-stage__mark ellipse,
.hero-stage__mark path {
  fill: rgba(240, 196, 58, 0.04);
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.hero-stage__sweep {
  position: absolute;
  inset: auto -8% 22% -8%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 224, 122, 0.9) 48%, transparent 95%);
  transform: rotate(-8deg);
  transform-origin: center;
  opacity: 0.9;
  animation: hero-sweep 9s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(240, 196, 58, 0.45);
}
@keyframes hero-rail-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes hero-mark-drift {
  0%, 100% { transform: translateY(6%); }
  50% { transform: translateY(0); }
}
@keyframes hero-sweep {
  0%, 100% { opacity: 0.4; transform: rotate(-8deg) translateX(-2%); }
  50% { opacity: 0.9; transform: rotate(-8deg) translateX(2%); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-home {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.85fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}
.hero-content--home {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 36rem;
  margin: 0;
  text-align: left;
}
.hero-champ {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  justify-self: end;
  width: min(100%, 17.5rem);
  padding: 0.2rem 0.65rem 0.35rem 0.1rem;
  color: inherit;
  background: none;
  border: 0;
  box-shadow: none;
  isolation: isolate;
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.hero-champ::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20% -32% -28% -24%;
  pointer-events: none;
  background: radial-gradient(
    68% 72% at 30% 38%,
    rgba(5, 21, 16, 0.88) 0%,
    rgba(5, 21, 16, 0.52) 42%,
    rgba(5, 21, 16, 0) 74%
  );
}
.hero-champ__rank {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 196, 58, 0.72);
  transition: color var(--transition-fast);
}
.hero-champ__brand {
  display: block;
  line-height: 0;
  text-decoration: none;
  border-radius: 2px;
}
.hero-champ__logo {
  display: block;
  height: clamp(34px, 3.8vw, 44px);
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  object-position: left center;
}
.hero-champ__score {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  margin-top: 0.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-champ__score strong { font-weight: 800; color: inherit; }
.hero-champ__of {
  font-size: 0.48em;
  font-weight: 600;
  color: var(--color-text-muted);
}
.hero-champ__bonus {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-gold-light);
  transition: color var(--transition-fast);
}
.hero-home .hero-champ__cta {
  margin-top: 0.55rem;
  min-height: var(--header-control-h, 40px);
  height: var(--header-control-h, 40px);
  padding: 0 16px;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero-champ__trust {
  margin: 0.2rem 0 0;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.62);
}
.hero-champ:hover .hero-champ__rank,
.hero-champ:focus-within .hero-champ__rank {
  color: var(--color-gold);
}
.hero-champ:hover .hero-champ__bonus,
.hero-champ:focus-within .hero-champ__bonus {
  color: var(--color-gold);
}
@media (max-width: 1200px) {
  .hero--home {
    --header-control-h: 38px;
  }
  .hero-champ__cta {
    padding: 0 14px;
  }
}
@media (max-width: 768px) {
  .hero--home {
    --header-control-h: 36px;
  }
  .hero-champ__cta {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .hero--home {
    --header-control-h: 34px;
  }
  .hero-champ__cta {
    padding: 0 10px;
  }
}
.hero-brand {
  display: block;
  width: fit-content;
  max-width: 100%; /* stay inside viewport; body clips overflow-x */
  margin: 0 0 1.5rem;
  font-family: var(--font-logo);
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: nowrap;
  overflow: visible;
  padding-right: 0.2em;
  box-sizing: border-box;
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-brand__win {
  display: inline-block;
  background: none;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--color-gold-light);
  color: var(--color-gold-light);
  /* No italic: Syne has no italic face; synthetic oblique clips the N */
  font-style: normal;
  font-weight: 800;
  font-synthesis: none;
  transform: none;
  margin-left: -0.04em;
  padding: 0 0.15em 0 0;
  overflow: visible;
  letter-spacing: -0.02em;
}
.hero-brand__win::after {
  content: '\2009'; /* hair space — keeps final stem inside ink box */
}
.hero-kicker {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.hero-content--home h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.88);
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}
.hero-content--home h1 .gold-text {
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--color-gold-light);
  color: var(--color-gold-light);
  padding-right: 0.12em;
  filter: none;
}
.hero-lede {
  max-width: 34ch;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
.hero-content--home .hero-buttons {
  justify-content: flex-start;
  gap: 12px;
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-home .btn {
  border-radius: var(--radius-btn);
  letter-spacing: 0.01em;
}
.hero-home .btn-primary {
  background: var(--gradient-gold);
  color: var(--color-gold-ink);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--color-gold-a50);
}
.hero-home .btn-primary:hover {
  background: var(--gradient-btn-primary-hover);
  color: var(--color-gold-ink);
  box-shadow: 0 10px 36px rgba(240, 196, 58, 0.5);
  transform: translateY(-1px);
}
.hero-home .btn-primary::before {
  display: none;
}
.hero-home .btn-secondary {
  border-width: 1px;
  border-color: var(--color-gold-a35);
  color: var(--color-gold-light);
  background: rgba(240, 196, 58, 0.04);
}
.hero-home .btn-secondary:hover {
  border-color: var(--color-gold-a70);
  background: rgba(240, 196, 58, 0.1);
  color: var(--color-gold-light);
  box-shadow: 0 0 24px rgba(240, 196, 58, 0.15);
}
@media (max-width: 900px) {
  .hero-home {
    grid-template-columns: 1fr minmax(10rem, 0.75fr);
    gap: 1.25rem;
  }
  .hero-stage__rail {
    opacity: 0.4;
    right: -60px;
  }
  .hero-stage__mark {
    opacity: 0.2;
    right: -2vw;
    width: min(52vw, 480px);
  }
  .hero-champ { width: min(100%, 14.5rem); }
}
@media (max-width: 768px) {
  .hero--home {
    padding-top: calc(60px + 2.25rem);
    padding-bottom: 2.25rem;
  }
  .hero-home {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.75rem;
  }
  .hero-content--home { max-width: 100%; }
  .hero-brand {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    letter-spacing: -0.035em;
    margin-bottom: 1.15rem;
    padding-right: 0.28em;
  }
  .hero-content--home h1 {
    font-size: clamp(1.25rem, 5.2vw, 1.55rem);
    font-weight: 600;
  }
  .hero-lede { font-size: 0.95rem; }
  .hero-content--home .hero-buttons { width: 100%; }
  .hero-home .btn-lg {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-champ {
    display: none;
  }
  .hero-stage__rail { display: none; }
  .hero-stage__mark {
    width: min(70vw, 320px);
    opacity: 0.16;
    bottom: -4%;
    right: -4vw;
  }
  .hero-stage__mark ellipse,
  .hero-stage__mark path { stroke-width: 2.1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-brand,
  .hero-kicker,
  .hero-content--home h1,
  .hero-lede,
  .hero-content--home .hero-buttons,
  .hero-champ,
  .hero-stage__rail::before,
  .hero-stage__mark,
  .hero-stage__sweep {
    animation: none !important;
  }
}

/* Footer chrome owned by css/components.css — kill legacy stat cards */
.footer-stat,
.footer-stat-content,
.footer-badge { display: none !important; }
.footer-badges { display: none !important; }
