.page-home {
  --home-gradient-blue: linear-gradient(135deg, #0A192F 0%, #10233e 55%, #1B2A4A 100%);
  display: block;
  overflow-x: clip;
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--font-body);
}

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

.page-home .breadcrumb {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--gutter) 0;
}

.page-home .breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .breadcrumb li {
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .breadcrumb li[aria-current="page"] {
  color: var(--c-accent-gold);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
  background: var(--home-gradient-blue);
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .22;
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 25, 47, .94) 0%, rgba(10, 25, 47, .8) 48%, rgba(16, 35, 62, .52) 100%);
}

.page-home .home-hero__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-home .home-hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .home-hero__copy {
  max-width: 660px;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--c-accent-gold);
}

.page-home .home-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--c-white);
}

.page-home .home-hero__lead {
  max-width: 58ch;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.85;
  color: #c6cede;
}

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

.page-home .home-hero__commands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  margin-top: 34px;
  padding-top: 10px;
}

.page-home .home-hero__command {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: var(--c-white);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}

.page-home .home-hero__command:hover {
  color: var(--c-accent);
  border-color: rgba(255, 107, 53, .6);
}

.page-home .home-hero__command-index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
}

.page-home .home-hero__snapshot {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--c-accent);
  color: var(--c-primary);
  box-shadow: var(--shadow-lg);
}

.page-home .home-hero__snapshot-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 25, 47, .72);
}

.page-home .home-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  margin: 0;
}

.page-home .home-snapshot__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 25, 47, .28);
}

.page-home .home-snapshot__item dt {
  font-size: 13px;
  color: rgba(10, 25, 47, .72);
}

.page-home .home-snapshot__item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-primary);
}

.page-home .home-snapshot__item dd span {
  margin-left: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(10, 25, 47, .72);
}

.page-home .home-hero__snapshot-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(10, 25, 47, .74);
}

.page-home .home-section {
  padding: 56px 0;
  scroll-margin-top: 110px;
}

.page-home .home-section__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.page-home .home-section h2,
.page-home .home-sitemap h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-white);
}

.page-home .home-section__lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-muted);
}

.page-home .home-section__head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.page-home .home-section__head-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-muted);
}

.page-home .home-checklist {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.page-home .home-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.7;
  color: #d7dde7;
}

.page-home .home-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .18);
}

.page-home .home-overview {
  background: var(--c-bg);
}

.page-home .home-overview__grid {
  display: grid;
  gap: 36px;
}

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

.page-home .home-overview__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-home .home-overview__chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.page-home .home-overview__chip strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.page-home .home-overview__actions,
.page-home .home-performance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-timeline {
  position: relative;
  overflow: hidden;
  background: var(--home-gradient-blue);
}

.page-home .home-timeline__curve {
  position: absolute;
  top: 40px;
  right: 0;
  width: 62%;
  height: 200px;
  pointer-events: none;
  opacity: .7;
}

.page-home .home-seasonline {
  position: relative;
  display: grid;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.page-home .home-seasonline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 179, 71, .5), rgba(255, 107, 53, .18));
}

.page-home .home-seasonline__item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}

.page-home .home-seasonline__dot {
  width: 12px;
  height: 12px;
  justify-self: center;
  border: 2px solid var(--c-accent-gold);
  border-radius: 50%;
  background: var(--c-primary-light);
  box-sizing: border-box;
  z-index: 1;
}

.page-home .home-seasonline__item--current .home-seasonline__dot {
  background: var(--c-accent);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, .22);
}

.page-home .home-seasonline__year {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-white);
}

.page-home .home-seasonline__item--current .home-seasonline__year {
  color: var(--c-accent);
}

.page-home .home-seasonline__state {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-muted);
}

.page-home .home-seasonline__item--current .home-seasonline__state {
  color: var(--c-accent-gold);
}

.page-home .home-lineup {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-lineup__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .045);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.page-home .home-lineup__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, .5);
  background: rgba(255, 107, 53, .08);
}

.page-home .home-lineup__index {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 53, .12);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
}

.page-home .home-lineup__body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-lineup__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .home-performance {
  background: var(--c-bg);
}

.page-home .home-performance__grid {
  display: grid;
  gap: 36px;
}

.page-home .home-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.page-home .home-performance__figure {
  margin: 0;
}

.page-home .home-performance__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-home .home-performance__figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  text-align: right;
  color: var(--c-muted);
}

.page-home .home-highlights {
  background: var(--home-gradient-blue);
}

.page-home .home-highlights__grid {
  display: grid;
  gap: 36px;
}

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

.page-home .home-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .045);
}

.page-home .home-steps__num {
  min-width: 26px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-accent-gold);
}

.page-home .home-steps h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

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

.page-home .home-archive {
  padding: 26px 24px;
  border: 1px solid rgba(255, 179, 71, .4);
  border-radius: var(--radius-lg);
  background: var(--c-primary);
}

.page-home .home-archive__range {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-white);
}

.page-home .home-archive__desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .home-highlights__img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-home .home-sitemap {
  padding: 56px 0 72px;
  background-color: var(--c-bg);
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 24px 24px;
  scroll-margin-top: 110px;
}

.page-home .home-sitemap__head {
  margin-bottom: 28px;
}

.page-home .home-sitemap__desc {
  max-width: 62ch;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .home-sitemap__trust {
  display: inline-block;
  margin: 14px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--c-accent);
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-accent-gold);
}

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

.page-home .home-sitemap__link {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-md);
  background: var(--c-surface-1);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.page-home .home-sitemap__link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, .55);
  background: var(--c-primary);
}

.page-home .home-sitemap__num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-accent);
}

.page-home .home-sitemap__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-sitemap__text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-sitemap__text small {
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .home-sitemap__arrow {
  font-size: 18px;
  color: var(--c-accent-gold);
}

@media (min-width: 768px) {
  .page-home .home-hero {
    min-height: 640px;
    padding: 64px 0 88px;
  }

  .page-home .home-hero h1 {
    font-size: 40px;
  }

  .page-home .home-hero__lead {
    font-size: 16px;
  }

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

  .page-home .home-hero__snapshot {
    padding: 32px 28px;
  }

  .page-home .home-section {
    padding: 76px 0;
  }

  .page-home .home-section h2,
  .page-home .home-sitemap h2 {
    font-size: 30px;
  }

  .page-home .home-section__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 44px;
  }

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

  .page-home .home-highlights__side {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-home .home-sitemap {
    padding: 76px 0 88px;
  }

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

@media (min-width: 1024px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 64px;
  }

  .page-home .home-hero__snapshot {
    padding: 32px 32px 32px 52px;
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .home-hero__commands {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .home-overview__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
  }

  .page-home .home-performance__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 64px;
    align-items: center;
  }

  .page-home .home-highlights__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 64px;
    align-items: start;
  }

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

  .page-home .home-lineup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .home-lineup__item {
    flex-direction: column;
    padding: 22px;
  }

  .page-home .home-seasonline {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0 12px;
  }

  .page-home .home-seasonline::before {
    left: 8%;
    right: 8%;
    top: 13px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 179, 71, .55), rgba(255, 107, 53, .2));
  }

  .page-home .home-seasonline__item {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 0 6px;
    text-align: center;
  }

  .page-home .home-seasonline__year {
    order: 0;
    font-size: 21px;
  }

  .page-home .home-seasonline__dot {
    order: 1;
  }

  .page-home .home-seasonline__state {
    order: 2;
  }

  .page-home .home-sitemap__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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