@keyframes home-particle-drift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 160px 220px, 240px 120px, 320px 280px; }
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.78); }
}

@keyframes home-float-breathe {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .42), 0 0 0 0 rgba(255, 46, 77, .28);
  }
  50% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .42), 0 0 0 14px rgba(255, 46, 77, 0);
  }
}

@keyframes home-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-home {
  --home-side: 20px;
  --home-gap: 16px;
  --home-radius-md: 18px;
  --home-radius-lg: 24px;
  position: relative;
  overflow-x: hidden;
  background: var(--color-ink);
  color: var(--text-high);
  font-family: var(--font-base);
  line-height: 1.6;
}

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

.page-home [data-section] {
  scroll-margin-top: 88px;
}

.page-home .home-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding-top: 16px;
}

.page-home .home-context .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  color: var(--text-low);
}

.page-home .home-context .breadcrumb a {
  color: var(--color-silver);
  text-decoration: none;
  transition: color .2s ease;
}

.page-home .home-context .breadcrumb a:hover {
  color: var(--text-high);
}

.page-home .home-breadcrumb-sep {
  color: var(--color-silver);
  opacity: .6;
}

.page-home .home-context-note {
  color: var(--text-low);
  font-size: 13px;
}

.page-home .home-quick-nav {
  display: flex;
  gap: 8px 20px;
  overflow-x: auto;
  padding: 14px 0 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-faint);
  scrollbar-width: thin;
}

.page-home .home-quick-nav::-webkit-scrollbar {
  height: 4px;
}

.page-home .home-quick-nav::-webkit-scrollbar-thumb {
  background: rgba(168, 180, 192, .28);
  border-radius: 999px;
}

.page-home .home-quick-nav a {
  flex: 0 0 auto;
  color: var(--text-low);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
  transition: color .2s ease, border-color .2s ease;
}

.page-home .home-quick-nav a:hover,
.page-home .home-quick-nav a.is-active {
  color: var(--text-high);
  border-bottom-color: var(--color-red);
}

.page-home .home-hero {
  position: relative;
  padding: 24px 0 48px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 46, 77, .20), transparent 42%),
    radial-gradient(ellipse at 85% 78%, rgba(0, 194, 255, .20), transparent 42%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .65;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(168, 180, 192, .35) 1px, transparent 1.5px),
    radial-gradient(circle at 80% 20%, rgba(255, 46, 77, .3) 1px, transparent 1.5px),
    radial-gradient(circle at 40% 80%, rgba(0, 194, 255, .3) 1px, transparent 1.5px);
  background-size: 92px 92px, 68px 68px, 120px 120px;
  animation: home-particle-drift 38s linear infinite;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
}

.page-home .home-hero-headline {
  max-width: 780px;
  padding-top: 18px;
}

.page-home .home-hero-headline h1 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.02em;
}

.page-home .home-hero-lead {
  max-width: 660px;
  color: var(--text-low);
  font-size: 16px;
}

.page-home .home-hero-collage {
  display: grid;
  gap: var(--home-gap);
  margin-top: 28px;
}

.page-home .home-team-entry {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), rgba(122, 30, 48, .55) 45%, var(--color-ink) 90%);
  border: 1px solid rgba(255, 46, 77, .34);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .38);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .home-team-entry-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.page-home .home-team-entry-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.08);
}

.page-home .home-team-entry-content {
  position: relative;
  padding: 20px;
}

.page-home .home-team-entry-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 46, 77, .5);
  border-radius: 999px;
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  background: rgba(11, 14, 20, .55);
}

.page-home .home-team-entry-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.page-home .home-team-entry-content p {
  margin: 0 0 16px;
  color: var(--text-low);
  font-size: 14px;
}

.page-home .home-team-entry-content .btn {
  position: relative;
  z-index: 1;
}

.page-home .home-team-entry-pop {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid var(--border-faint);
  border-radius: 12px;
  background: rgba(11, 14, 20, .78);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  transition: opacity .3s ease, transform .3s ease;
}

.page-home .home-team-entry-pop-label {
  color: var(--text-low);
  font-size: 11px;
  letter-spacing: .05em;
}

.page-home .home-team-entry-pop-score {
  color: var(--text-high);
  font-size: 16px;
  font-weight: 800;
}

@media (hover: hover) {
  .page-home .home-team-entry-pop {
    opacity: 0;
    transform: translateY(-6px);
  }

  .page-home .home-team-entry:hover .home-team-entry-pop,
  .page-home .home-team-entry:focus-within .home-team-entry-pop {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-home .home-timeline-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(0, 194, 255, .28);
  border-radius: var(--home-radius-lg);
  background: linear-gradient(160deg, #07131D, #0B0E14 68%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .32);
}

.page-home .home-timeline-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, .26), transparent 66%);
  pointer-events: none;
}

.page-home .home-timeline-card-title,
.page-home .home-mobile-card-title {
  margin: 4px 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.page-home .home-timeline-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  margin: 14px 0 10px;
  color: var(--color-blue);
}

.page-home .home-timeline-track {
  stroke: #2B3646;
  stroke-width: 2;
  stroke-dasharray: 3 5;
}

.page-home .home-timeline-node {
  fill: var(--color-blue);
  filter: drop-shadow(0 0 6px rgba(0, 194, 255, .9));
}

.page-home .home-timeline-node.is-red {
  fill: var(--color-red);
  filter: drop-shadow(0 0 6px rgba(255, 46, 77, .9));
}

.page-home .home-timeline-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-timeline-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-faint);
  color: var(--text-low);
  font-size: 14px;
}

.page-home .home-timeline-time {
  min-width: 4.2em;
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-weight: 700;
}

.page-home .home-mobile-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--border-faint);
  border-radius: var(--home-radius-lg);
  background: var(--color-panel);
}

.page-home .home-mobile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 194, 255, .10), transparent 48%);
  pointer-events: none;
}

.page-home .home-mobile-card > * {
  position: relative;
  z-index: 1;
}

.page-home .home-mobile-card p {
  margin: 0 0 16px;
  color: var(--text-low);
  font-size: 14px;
}

@media (min-width: 768px) {
  .page-home .home-hero-headline h1 {
    font-size: 56px;
  }

  .page-home .home-hero-lead {
    font-size: 18px;
  }

  .page-home .home-hero-collage {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-areas: "team timeline" "team mobile";
  }

  .page-home .home-team-entry {
    grid-area: team;
  }

  .page-home .home-timeline-card {
    grid-area: timeline;
    min-height: 320px;
  }

  .page-home .home-mobile-card {
    grid-area: mobile;
  }

  .page-home .home-team-entry-content {
    padding: 26px;
  }

  .page-home .home-team-entry-title {
    font-size: 30px;
  }
}

.page-home .home-schedule-section {
  padding: 56px 0 44px;
  background: linear-gradient(180deg, #0B0E14, #0E1319);
}

.page-home .home-schedule-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.page-home .home-section-title {
  margin: 6px 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.page-home .home-schedule-head p:last-child {
  color: var(--text-low);
  font-size: 14px;
}

.page-home .home-schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.page-home .home-schedule-swipe {
  min-width: 0;
}

.page-home .home-schedule-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.page-home .home-schedule-track::-webkit-scrollbar {
  height: 6px;
}

.page-home .home-schedule-track::-webkit-scrollbar-thumb {
  background: rgba(168, 180, 192, .3);
  border-radius: 999px;
}

.page-home .home-schedule-night {
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border-faint);
  border-left: 3px solid var(--color-red);
  border-radius: var(--home-radius-md);
  background: var(--color-panel);
}

.page-home .home-schedule-label {
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-home .home-schedule-time {
  color: var(--text-high);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.page-home .home-schedule-night strong {
  color: var(--text-high);
  font-size: 16px;
  font-weight: 700;
}

.page-home .home-schedule-meta {
  color: var(--text-low);
  font-size: 13px;
}

.page-home .home-schedule-hint {
  margin: 10px 0 0;
  color: var(--text-low);
  font-size: 12px;
  text-align: right;
}

.page-home .home-fan-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-faint);
  border-radius: var(--home-radius-lg);
  aspect-ratio: 16 / 9;
  min-height: 0;
}

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

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

.page-home .home-mobile-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border-faint);
  border-radius: var(--home-radius-lg);
  background:
    radial-gradient(circle at 90% 18%, rgba(0, 194, 255, .14), transparent 56%),
    radial-gradient(circle at 8% 86%, rgba(255, 46, 77, .12), transparent 56%),
    var(--color-panel);
}

.page-home .home-mobile-lead {
  margin: 0 0 18px;
  color: var(--text-low);
  font-size: 15px;
}

.page-home .home-mobile-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-mobile-features li {
  position: relative;
  padding-left: 24px;
  color: var(--text-high);
  font-size: 14px;
}

.page-home .home-mobile-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .54em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-energy);
  box-shadow: 0 0 8px rgba(255, 46, 77, .55);
}

.page-home .home-archive-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-faint);
}

.page-home .home-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.page-home .home-archive-copy p {
  color: var(--text-low);
  font-size: 15px;
}

.page-home .home-archive-features {
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-archive-features li {
  position: relative;
  padding-left: 26px;
  color: var(--text-high);
  font-size: 14px;
}

.page-home .home-archive-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-blue);
  transform: skew(-18deg);
}

.page-home .home-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.page-home .home-archive-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-faint);
  border-radius: var(--home-radius-lg);
  aspect-ratio: 3 / 2;
  background: var(--color-panel);
}

.page-home .home-archive-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-archive-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border: 1px solid var(--border-faint);
  border-radius: 999px;
  background: rgba(11, 14, 20, .76);
  color: var(--color-silver);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.page-home .home-weekend-section {
  padding: 48px 0 72px;
}

.page-home .home-weekend-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--home-radius-lg);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 46, 77, .16), transparent 46%),
    radial-gradient(circle at 88% 78%, rgba(0, 194, 255, .15), transparent 46%),
    linear-gradient(135deg, rgba(122, 30, 48, .28), rgba(18, 58, 92, .3));
}

.page-home .home-weekend-card p {
  color: var(--text-low);
  font-size: 15px;
}

.page-home .home-weekend-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
  color: var(--text-high);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.page-home .home-weekend-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 10px rgba(255, 46, 77, .85);
  animation: home-pulse 2s ease-in-out infinite;
}

.page-home .home-proven-section {
  padding: 40px 0 72px;
  border-top: 1px solid var(--border-faint);
}

.page-home .home-proven-section .shell {
  text-align: center;
}

.page-home .home-proven-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .home-proven-item {
  padding: 18px 12px;
  border: 1px solid var(--border-faint);
  border-radius: var(--home-radius-md);
  background: var(--color-panel);
}

.page-home .home-proven-item strong {
  display: block;
  color: var(--text-high);
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.page-home .home-proven-item strong {
  background: var(--gradient-energy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-proven-item span {
  display: block;
  margin-top: 6px;
  color: var(--text-low);
  font-size: 13px;
}

.page-home .home-proven-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: 22px;
}

.page-home .home-proven-trust {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--text-low);
  font-size: 13px;
  line-height: 1.7;
}

.page-home .home-weekend-float {
  position: fixed;
  right: var(--home-side);
  bottom: calc(var(--home-side) + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 232px;
  max-width: calc(100vw - 32px);
}

.page-home .home-weekend-float-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 46, 77, .5);
  border-radius: 999px;
  background: rgba(20, 26, 36, .82);
  backdrop-filter: blur(10px);
  color: var(--text-high);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  animation: home-float-breathe 3s ease-in-out infinite;
  transition: border-color .2s ease, background .2s ease;
}

.page-home .home-weekend-float-btn::-webkit-details-marker {
  display: none;
}

.page-home .home-weekend-float-btn::marker {
  content: "";
}

.page-home .home-weekend-float-btn:hover {
  border-color: rgba(0, 194, 255, .55);
  background: rgba(20, 26, 36, .92);
}

.page-home .home-weekend-float-dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 10px var(--color-red);
}

.page-home .home-weekend-float-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(0, 194, 255, .28);
  border-radius: var(--home-radius-lg);
  background: rgba(11, 14, 20, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .5);
}

.page-home .home-weekend-float[open] .home-weekend-float-panel {
  animation: home-panel-in .28s ease;
}

.page-home .home-weekend-panel-img {
  display: block;
  width: 100%;
  height: 62px;
  object-fit: cover;
  border: 1px solid var(--border-faint);
  border-radius: 12px;
  margin-bottom: 12px;
}

.page-home .home-weekend-float-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-faint);
}

.page-home .home-weekend-float-head strong {
  color: var(--text-high);
  font-size: 15px;
}

.page-home .home-weekend-float-head span {
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .home-weekend-float-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-weekend-float-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--text-low);
  font-size: 13px;
}

.page-home .home-weekend-float-time {
  min-width: 4.2em;
  color: var(--text-high);
  font-family: var(--font-mono);
  font-weight: 700;
}

@media (min-width: 860px) {
  .page-home .home-schedule-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .page-home .home-schedule-night {
    flex-basis: 260px;
  }

  .page-home .home-fan-img {
    aspect-ratio: 2 / 3;
    max-height: 480px;
    position: sticky;
    top: 88px;
  }
}

@media (min-width: 820px) {
  .page-home .home-archive-grid {
    grid-template-columns: minmax(0, 1.1fr) 440px;
  }

  .page-home .home-archive-copy {
    padding-right: 24px;
  }
}

@media (min-width: 720px) {
  .page-home .home-proven-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .page-home .home-proven-item strong {
    font-size: 32px;
  }

  .page-home .home-mobile-panel {
    padding: 40px;
  }

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

  .page-home .home-weekend-card {
    padding: 40px 36px;
  }
}
