.page-home {
  background: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ================= Hero ================= */
.page-home .home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  overflow: hidden;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .home-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,23,43,0.97) 0%, rgba(11,31,58,0.90) 48%, rgba(22,51,92,0.66) 100%);
}
.page-home .home-hero > .speed-line {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 4;
  pointer-events: none;
}
.page-home .home-hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 96px;
}
.page-home .home-hero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(245,242,235,0.72);
  margin-bottom: 18px;
}
.page-home .home-hero__crumb::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-gold);
}
.page-home .home-hero__title {
  margin: 0 0 22px;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 2.125rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.page-home .home-hero__lead {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: rgba(245,242,235,0.84);
  max-width: 640px;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.page-home .home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .home-hero__tags li {
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--color-cream);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.page-home .home-hero__feature {
  margin: 0;
  max-width: 560px;
}
.page-home .home-hero__feature-clip {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  transform: rotate(-1.5deg);
  transition: transform var(--duration) var(--ease);
}
.page-home .home-hero__feature-clip:hover {
  transform: rotate(0deg) translateY(-4px);
}
.page-home .home-hero__feature-clip::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  border-top-right-radius: 0;
  border-bottom-left-radius: 999px;
}
.page-home .home-hero__feature-clip img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-hero__feature-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.page-home .home-hero__feature-caption span {
  font-size: 0.8125rem;
  color: var(--color-cream);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.page-home .home-hero__marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(4,16,32,0.42);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.page-home .home-hero__marquee::-webkit-scrollbar {
  display: none;
}
.page-home .home-hero__marquee span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(245,242,235,0.72);
  letter-spacing: 0.04em;
}

/* ================= Core ================= */
.page-home .home-core {
  background: var(--color-cream);
  padding: 76px 0;
}
.page-home .home-core__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 42px;
}
.page-home .home-core__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background-color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.page-home .home-core__item::before {
  content: '';
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  margin-bottom: 22px;
}
.page-home .home-core__item--xl::before {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}
.page-home .home-core__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.page-home .home-core__item--xl {
  background: var(--color-primary);
  color: var(--color-cream);
}
.page-home .home-core__item--xl:hover {
  border-color: rgba(245,179,1,0.45);
}
.page-home .home-core__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 22px;
}
.page-home .home-core__num {
  font-family: var(--font-caption);
  font-size: 0.9375rem;
  color: var(--color-gray);
}
.page-home .home-core__item--xl .home-core__num {
  color: rgba(245,242,235,0.46);
}
.page-home .home-core__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,107,44,0.12);
  color: var(--color-accent);
}
.page-home .home-core__item--xl .home-core__icon {
  background: rgba(245,179,1,0.16);
  color: var(--color-gold);
}
.page-home .home-core__icon svg {
  width: 24px;
  height: 24px;
}
.page-home .home-core__title {
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-charcoal);
}
.page-home .home-core__item--xl .home-core__title {
  color: var(--color-white);
}
.page-home .home-core__text {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--color-gray);
}
.page-home .home-core__item--xl .home-core__text {
  color: rgba(245,242,235,0.70);
}
.page-home .home-core__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-accent-dark);
  text-decoration: none;
}
.page-home .home-core__link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.page-home .home-core__item--xl .home-core__link {
  color: var(--color-gold);
}
.page-home .home-core__item--xl .home-core__link:hover {
  color: var(--color-accent);
}

/* ================= Coverage ================= */
.page-home .home-coverage {
  position: relative;
  padding: 80px 0;
  background: var(--color-primary-deep);
  color: var(--color-cream);
  overflow: hidden;
}
.page-home .home-coverage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .home-coverage__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
}
.page-home .home-coverage__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,23,43,0.98) 0%, rgba(11,31,58,0.88) 55%, rgba(11,31,58,0.72) 100%);
}
.page-home .home-coverage > .container {
  position: relative;
  z-index: 2;
}
.page-home .home-coverage__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}
.page-home .home-coverage__lead {
  margin: 0 0 20px;
  max-width: 520px;
  color: rgba(245,242,235,0.80);
}
.page-home .home-coverage__league-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .home-coverage__league-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 700;
  color: var(--color-cream);
}
.page-home .home-coverage__league-list small {
  font-weight: 400;
  color: rgba(245,242,235,0.52);
}
.page-home .home-coverage__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex: 0 0 auto;
}
.page-home .home-coverage__note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(245,242,235,0.48);
}
.page-home .home-coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.page-home .home-coverage__stats .stat-card {
  padding: 22px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  text-align: center;
}
.page-home .home-coverage__stats .stat-card--gold {
  border-color: rgba(245,179,1,0.36);
}
.page-home .home-coverage__stats .stat-value {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
}
.page-home .home-coverage__stats .stat-card--gold .stat-value {
  color: var(--color-gold);
}
.page-home .home-coverage__stats .home-coverage__stat-accent .stat-value {
  color: var(--color-accent);
}
.page-home .home-coverage__stats .stat-value span {
  font-size: 1.125rem;
  margin-left: 2px;
}
.page-home .home-coverage__stats .stat-label {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: rgba(245,242,235,0.62);
}
.page-home .home-coverage__chart {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 320px;
  height: 120px;
  z-index: 1;
  opacity: 0.30;
  pointer-events: none;
}

/* ================= Scenarios ================= */
.page-home .home-scenarios {
  background: var(--color-white);
  padding: 80px 0;
}
.page-home .home-scenario {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
}
.page-home .home-scenario__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.page-home .home-scenario__media img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-scenario__body h3 {
  margin: 16px 0 12px;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-charcoal);
}
.page-home .home-scenario__body p {
  margin: 0;
  color: var(--color-gray);
  max-width: 480px;
}
.page-home .home-scenario__cta {
  margin-top: 48px;
  text-align: center;
}

/* ================= Quick Start ================= */
.page-home .home-quickstart {
  position: relative;
  padding: 80px 0;
  background: var(--color-primary);
  color: var(--color-white);
  overflow: hidden;
}
.page-home .home-quickstart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold) 55%, transparent);
  z-index: 2;
}
.page-home .home-quickstart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.page-home .home-quickstart__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  text-decoration: none;
  transition: transform var(--duration) var(--ease), background-color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.page-home .home-quickstart__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
}
.page-home .home-quickstart__card h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 900;
}
.page-home .home-quickstart__card p {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  color: rgba(245,242,235,0.72);
}
.page-home .home-quickstart__card .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* ================= Responsive ================= */
@media (min-width: 768px) {
  .page-home .home-core__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .home-core__item--xl {
    grid-column: span 2;
  }
  .page-home .home-coverage__league-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-scenario {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .page-home .home-scenario__media img {
    width: 100%;
    height: auto;
  }
  .page-home .home-quickstart__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .home-quickstart__grid .home-quickstart__card:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .page-home .home-hero__grid {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .page-home .home-hero__content {
    flex: 1 1 52%;
  }
  .page-home .home-hero__feature {
    flex: 0 1 46%;
  }
  .page-home .home-hero__title {
    font-size: 2.75rem;
  }
  .page-home .home-hero__lead {
    font-size: 1rem;
  }
  .page-home .home-core__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-core__item--xl {
    grid-column: span 2;
  }
  .page-home .home-coverage__layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .page-home .home-coverage__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .page-home .home-quickstart__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-quickstart__grid .home-quickstart__card:last-child {
    grid-column: auto;
  }
}
