.page-home {
  --home-deep-blue: #0A1F44;
  --home-blue-2: #102A5C;
  --home-blue-3: #15325F;
  --home-orange: #FF6B35;
  --home-paper: #F5EFE6;
  --home-ink: #1A1A2E;
  --home-border: #D1D5DB;
  --home-white: #FFFFFF;
  --home-mono: var(--font-number);
  --home-shadow-lg: 0 16px 48px rgba(10, 31, 68, 0.18);
}

.page-home .breadcrumb {
  background: var(--home-paper);
  padding: 14px 0;
}

.page-home .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  font-size: 0.875rem;
  color: var(--home-ink);
}

.page-home .breadcrumb-item {
  display: flex;
  align-items: center;
}

.page-home .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin-right: 8px;
  color: var(--color-border);
}

.page-home .breadcrumb-link {
  color: var(--color-data-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-home .breadcrumb-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.page-home .breadcrumb-item[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 700;
}

.page-home .home-hero {
  position: relative;
  background: var(--home-deep-blue);
  color: var(--home-white);
  padding: 56px 0 64px;
  overflow: hidden;
}

.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero-bg-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .home-hero-frame {
  position: relative;
  padding: 32px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.92) 0%, rgba(16, 42, 92, 0.78) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.page-home .home-hero-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 107, 53, 0.5);
  pointer-events: none;
}

.page-home .home-hero-frame::after {
  content: "01 / FIRST SCREEN";
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--home-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--home-orange);
  background: var(--home-deep-blue);
  padding: 2px 10px;
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 999px;
}

.page-home .home-hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--home-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
}

.page-home .home-hero-kicker .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

.page-home .home-hero-title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.page-home .home-hero-lead {
  max-width: 50em;
  margin-bottom: 28px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .home-hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-home .home-hero-meta dt {
  margin-bottom: 4px;
  font-family: var(--home-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.page-home .home-hero-meta dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--home-white);
}

.page-home .home-hero-figure {
  margin: 0;
  position: relative;
  background: var(--home-paper);
  padding: 10px 10px 14px;
  box-shadow: var(--home-shadow-lg);
}

.page-home .home-hero-figure img,
.page-home .home-entry-figure img,
.page-home .home-board-figure img,
.page-home .home-stats-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-hero-figure img {
  aspect-ratio: 3 / 2;
  filter: saturate(1.05) contrast(1.05);
}

.page-home .home-figure-caption {
  margin: 12px 0 0;
  padding-left: 12px;
  font-family: var(--home-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--home-ink);
  border-left: 3px solid var(--home-orange);
}

.page-home .home-entry {
  position: relative;
  background: var(--home-paper);
  padding: 64px 0 72px;
}

.page-home .home-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--home-orange) 0%, var(--home-orange) 18%, var(--home-paper) 18%, var(--home-paper) 100%);
}

.page-home .home-entry-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-entry-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--home-mono);
  font-size: 0.8125rem;
  color: var(--home-ink);
  opacity: 0.72;
}

.page-home .home-entry-copy h2 {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--home-ink);
}

.page-home .home-entry-desc {
  max-width: 46em;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26, 26, 46, 0.78);
}

.page-home .home-entry-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: var(--shadow-md);
  background: var(--home-white);
  transform: rotate(-1deg);
}

.page-home .home-entry-figure::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .home-entry-figure img {
  aspect-ratio: 4 / 3;
}

.page-home .home-board {
  background: var(--color-secondary-bg);
  padding: 72px 0 80px;
}

.page-home .home-board-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.page-home .home-board-header .btn {
  justify-self: start;
}

.page-home .home-section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-family: var(--home-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-orange);
}

.page-home .home-section-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--home-orange);
}

.page-home .home-board-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--home-ink);
}

.page-home .home-board-desc {
  max-width: 52em;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.75);
}

.page-home .home-board-figure {
  margin: 0 0 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--home-white);
}

.page-home .home-board-figure img {
  aspect-ratio: 8 / 5;
}

.page-home .home-board-figure .home-figure-caption {
  padding: 12px 16px;
}

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

.page-home .home-league-card {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 16px;
  background: var(--home-white);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .home-league-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.1;
  transition: opacity var(--transition-fast), background var(--transition-fast);
}

.page-home .home-league-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .home-league-card:hover::before {
  background: var(--home-orange);
  opacity: 1;
}

.page-home .home-league-card-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.page-home .home-league-index {
  font-family: var(--home-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-data-blue);
}

.page-home .home-league-name {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--home-ink);
}

.page-home .home-league-round {
  margin-left: auto;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: var(--home-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--home-white);
  background: var(--home-orange);
}

.page-home .home-league-cover {
  margin: 0 0 12px;
  font-size: 0.875rem;
  color: rgba(26, 26, 46, 0.68);
}

.page-home .home-league-details {
  padding-top: 10px;
  border-top: 1px dashed var(--home-border);
}

.page-home .home-league-details summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  font-family: var(--home-mono);
  font-size: 0.8125rem;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.page-home .home-league-details summary::-webkit-details-marker {
  display: none;
}

.page-home .home-league-details summary:hover {
  color: var(--home-orange);
}

.page-home .home-league-details summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-orange);
  transition: transform var(--transition-fast);
}

.page-home .home-league-details[open] summary::after {
  transform: rotate(45deg);
}

.page-home .home-league-notes {
  display: grid;
  gap: 8px;
  margin: 12px 0 4px;
  padding: 0;
  list-style: none;
}

.page-home .home-league-notes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(26, 26, 46, 0.8);
}

.page-home .home-league-dot {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--home-orange);
  flex-shrink: 0;
}

.page-home .home-league-link {
  display: inline-block;
  margin: 8px 0 2px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-data-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.page-home .home-league-link:hover {
  border-bottom-color: var(--color-data-blue);
}

.page-home .home-stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--home-deep-blue) 0%, var(--home-blue-3) 100%);
  color: var(--home-white);
  padding: 80px 0;
}

.page-home .home-stats::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-home .home-stats::after {
  content: "STATS";
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-family: var(--home-mono);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-home .home-stats-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-stats-copy .home-section-kicker {
  color: var(--home-orange);
}

.page-home .home-stats-copy h2 {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  line-height: 1.18;
}

.page-home .home-stats-desc {
  max-width: 46em;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
}

.page-home .home-stats-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.page-home .home-stats-facts li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}

.page-home .home-stats-facts li::before {
  content: "//";
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--home-mono);
  color: var(--home-orange);
}

.page-home .home-stats-visual {
  display: grid;
  gap: 24px;
}

.page-home .home-stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .home-stat-block {
  position: relative;
  overflow: hidden;
  padding: 14px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.page-home .home-stat-block:hover {
  background: rgba(255, 107, 53, 0.14);
  border-color: rgba(255, 107, 53, 0.5);
}

.page-home .home-stat-num {
  display: block;
  font-family: var(--home-mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1;
  color: var(--home-orange);
}

.page-home .home-stat-label {
  display: block;
  margin-top: 6px;
  font-family: var(--home-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.page-home .home-stats-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.page-home .home-stats-figure img {
  aspect-ratio: 3 / 2;
}

.page-home .home-stats-figure .home-figure-caption {
  color: var(--home-white);
  border-left-color: var(--home-orange);
}

.page-home .home-news {
  background: var(--home-paper);
  padding: 72px 0;
}

.page-home .home-news-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.page-home .home-news-header h2 {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--home-ink);
}

.page-home .home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-news-card {
  position: relative;
  padding: 24px;
  background: var(--home-white);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .home-news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.page-home .home-news-card h3 {
  margin: 14px 0 10px;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--home-ink);
}

.page-home .home-news-card p {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(26, 26, 46, 0.72);
}

.page-home .home-news-link {
  font-family: var(--home-mono);
  font-size: 0.8125rem;
  color: var(--color-data-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.page-home .home-news-link:hover {
  border-bottom-color: var(--color-data-blue);
}

.page-home .home-timeline {
  background: var(--home-white);
  border-top: 1px solid var(--home-border);
  padding: 72px 0;
}

.page-home .home-timeline-header {
  margin-bottom: 40px;
}

.page-home .home-timeline-header h2 {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.625rem, 3.6vw, 2.375rem);
  color: var(--home-ink);
}

.page-home .home-timeline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-timeline-item {
  position: relative;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--home-border);
}

.page-home .home-timeline-item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.page-home .home-timeline-year {
  display: block;
  margin-bottom: 6px;
  font-family: var(--home-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .home-timeline-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(26, 26, 46, 0.75);
}

.page-home .home-support {
  background: var(--color-secondary-bg);
  padding: 64px 0;
}

.page-home .home-support-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-support-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--home-white);
  border: 1px solid var(--home-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.page-home .home-support-card h2 {
  margin: 0 0 10px;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--home-ink);
}

.page-home .home-support-card p {
  margin-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(26, 26, 46, 0.72);
}

.page-home .home-support-card--accent {
  background: linear-gradient(135deg, var(--home-deep-blue), var(--home-blue-2));
  border-color: transparent;
}

.page-home .home-support-card--accent h2 {
  color: var(--home-white);
}

.page-home .home-support-card--accent p {
  color: rgba(255, 255, 255, 0.76);
}

.page-home .home-support-card--accent .home-section-kicker {
  color: var(--home-orange);
}

.page-home .btn-primary {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

@media (min-width: 640px) {
  .page-home .home-hero-meta {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (min-width: 960px) {
  .page-home .home-hero {
    padding: 72px 0 80px;
  }

  .page-home .home-hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }

  .page-home .home-hero-frame {
    padding: 44px 36px 36px;
  }

  .page-home .home-hero-figure {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .home-entry-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .page-home .home-entry-figure {
    transform: rotate(-1deg) translateY(-4px);
  }

  .page-home .home-board-header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .page-home .home-board-desc {
    grid-column: 1 / -1;
  }

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

  .page-home .home-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

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

  .page-home .home-timeline-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .page-home .home-timeline-item {
    margin-right: 20px;
    padding: 20px 0 0;
    border-left: none;
    border-top: 2px solid var(--home-border);
  }

  .page-home .home-timeline-item::before {
    top: -7px;
    left: 0;
  }

  .page-home .home-timeline-item:last-child {
    margin-right: 0;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .page-home .home-hero-frame {
    animation: pageHomeFrameIn 0.7s ease both;
  }

  .page-home .home-hero-figure {
    animation: pageHomeFigureIn 0.7s ease 0.1s both;
  }

  .page-home .home-entry-figure {
    animation: pageHomeFloat 5s ease-in-out infinite;
  }

  @keyframes pageHomeFrameIn {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pageHomeFigureIn {
    from {
      opacity: 0;
      transform: translateX(24px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes pageHomeFloat {
    0%, 100% {
      transform: rotate(-1deg) translateY(0);
    }
    50% {
      transform: rotate(-1deg) translateY(-6px);
    }
  }
}
