.page-home {
  --home-edge: 22px;
  --home-gap: 26px;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.page-home a {
  color: inherit;
  text-decoration: none;
}

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

.page-home .section-head {
  position: relative;
  margin-bottom: 36px;
  border-left: 4px solid var(--c-accent);
  padding-left: 18px;
}

.page-home .section-eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.page-home .section-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-home .section-desc {
  margin: 0;
  font-size: 0.96rem;
  color: var(--c-text-secondary);
}

.page-home .section-more {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transition: var(--transition);
}

.page-home .section-more:hover {
  color: #ffffff;
}

.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 72px 0 96px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c-primary) 0%, #0a111c 78%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.02);
}

.page-home .hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10, 31, 60, 0.94) 0%, rgba(10, 31, 60, 0.76) 42%, rgba(11, 15, 26, 0.4) 100%);
}

.page-home .hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(62, 255, 154, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 255, 154, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}

.page-home .hero-cutline {
  position: absolute;
  right: -2%;
  bottom: 34px;
  z-index: 2;
  width: 46%;
  height: 5px;
  background: var(--c-accent);
  transform: skewX(-16deg);
  box-shadow: 0 0 22px rgba(62, 255, 154, 0.7);
}

.page-home .hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.page-home .breadcrumb {
  margin-bottom: 26px;
}

.page-home .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: var(--c-text-secondary);
}

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

.page-home .hero-copy {
  max-width: 720px;
}

.page-home .tag-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid rgba(62, 255, 154, 0.45);
  background: rgba(62, 255, 154, 0.08);
  color: var(--c-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home .page-title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7.4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #f4f7fa;
  text-transform: uppercase;
}

.page-home .hero-h1-main {
  display: block;
  font-style: italic;
}

.page-home .hero-h1-sep {
  display: inline-block;
  margin: 0 4px;
  color: var(--c-accent);
  font-weight: 400;
}

.page-home .hero-h1-sub {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 14px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-silver);
  text-transform: none;
  background: rgba(11, 15, 26, 0.72);
  border-left: 4px solid var(--c-accent);
}

.page-home .page-lead {
  max-width: 640px;
  margin: 0 0 30px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #c5cdd6;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
}

.page-home .btn-primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #04121f;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.page-home .btn-primary:hover {
  background: #7dffbd;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(62, 255, 154, 0.3);
}

.page-home .btn-ghost {
  background: transparent;
  border-color: var(--c-silver);
  color: var(--c-silver);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.page-home .btn-ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.page-home .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 64, 89, 0.6);
}

.page-home .hero-fact {
  font-size: 0.85rem;
  color: var(--c-text-secondary);
}

.page-home .hero-fact strong {
  margin-right: 2px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-accent);
}

.page-home .notice-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 30px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(62, 255, 154, 0.08), rgba(62, 255, 154, 0.02));
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
}

.page-home .notice-strip p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-silver);
}

.page-home .notice-strip a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent);
  border-bottom: 1px solid var(--c-accent);
}

.page-home .portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .portal-card {
  position: relative;
  display: block;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--c-card), #0e1824);
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.page-home .portal-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: var(--c-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.12;
  transition: var(--transition);
}

.page-home .portal-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 0 34px rgba(62, 255, 154, 0.12), var(--shadow-card);
}

.page-home .portal-card:hover::after {
  opacity: 0.34;
}

.page-home .portal-index {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-accent);
}

.page-home .portal-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-text);
}

.page-home .portal-card p {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.page-home .portal-link {
  display: inline-block;
  padding-bottom: 3px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
}

.page-home .metrics-board {
  display: grid;
  gap: 22px;
}

.page-home .metrics-ring {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(145deg, #0c1724, var(--c-card));
  border: 1px solid var(--c-border);
}

.page-home .ring-wrap {
  position: relative;
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
}

.page-home .ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.page-home .ring-bg {
  fill: none;
  stroke: var(--c-border);
  stroke-width: 10;
}

.page-home .ring-fg {
  fill: none;
  stroke: var(--c-accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 65;
}

.page-home .ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-home .ring-center strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-accent);
}

.page-home .ring-center span {
  margin-top: 4px;
  font-size: 0.68rem;
  color: var(--c-silver);
}

.page-home .ring-note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

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

.page-home .metrics-card {
  padding: 20px 16px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-accent);
  transition: var(--transition);
}

.page-home .metrics-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 255, 154, 0.4);
  box-shadow: 0 10px 24px rgba(62, 255, 154, 0.08);
}

.page-home .metrics-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--c-text-secondary);
}

.page-home .metrics-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--c-text);
}

.page-home .metrics-unit {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  color: var(--c-text-secondary);
}

.page-home .metrics-footnote {
  margin: 0;
  padding: 14px 18px;
  background: rgba(142, 29, 47, 0.09);
  border-left: 3px solid var(--c-danger);
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

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

.page-home .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-card);
  border: 2px solid var(--c-border);
  transition: var(--transition);
}

.page-home .feature-card:hover {
  transform: translateY(-4px) rotate(0.3deg);
  border-color: rgba(62, 255, 154, 0.55);
  box-shadow: 0 0 30px rgba(62, 255, 154, 0.1);
}

.page-home .feature-thumb {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--c-border);
  aspect-ratio: 4 / 3;
}

.page-home .feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.page-home .feature-card:hover .feature-thumb img {
  transform: scale(1.05);
}

.page-home .feature-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.page-home .feature-content .tag {
  align-self: flex-start;
  margin-bottom: 12px;
}

.page-home .feature-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-text);
}

.page-home .feature-content p {
  flex: 1;
  margin: 0 0 18px;
  font-size: 0.89rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.page-home .feature-link {
  align-self: flex-start;
  padding-bottom: 2px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
}

.page-home .feature-card-away {
  background: linear-gradient(145deg, #101b28, #0a1520);
  border-color: rgba(142, 29, 47, 0.55);
}

.page-home .feature-card-away:hover {
  border-color: var(--c-danger);
  box-shadow: 0 0 30px rgba(142, 29, 47, 0.14);
}

.page-home .feature-away-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 35px 24px 0;
}

.page-home .away-home,
.page-home .away-away {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--c-silver);
  background: rgba(11, 15, 26, 0.6);
  color: var(--c-silver);
  font-weight: 900;
}

.page-home .away-vs {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-danger);
}

.page-home .update-list {
  margin-left: 12px;
  padding-left: 22px;
  border-left: 2px solid var(--c-border);
}

.page-home .update-item {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid rgba(42, 64, 89, 0.5);
}

.page-home .update-item:last-child {
  border-bottom: none;
}

.page-home .update-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 32px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 8px rgba(62, 255, 154, 0.75);
}

.page-home .update-flag {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.page-home .update-body .tag {
  margin-bottom: 8px;
}

.page-home .update-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--c-text);
}

.page-home .update-body p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c-text-secondary);
}

.page-home .update-body a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-accent);
  border-bottom: 1px solid var(--c-accent);
}

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

@media (min-width: 768px) {
  .page-home .section {
    padding: 84px 0;
  }

  .page-home .section-more {
    position: absolute;
    right: 0;
    bottom: 6px;
    margin-top: 0;
  }

  .page-home .home-hero {
    min-height: 620px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  }

  .page-home .hero-bg img {
    opacity: 0.62;
  }

  .page-home .portal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .page-home .portal-card {
    padding: 34px;
  }

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

  .page-home .feature-card-away {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .page-home .feature-away-graphic {
    flex: 0 0 220px;
    padding: 24px 0 24px 24px;
  }

  .page-home .feature-card-away .feature-content {
    padding-left: 12px;
  }
}

@media (min-width: 860px) {
  .page-home .metrics-board {
    grid-template-columns: 300px 1fr;
  }

  .page-home .metrics-ring {
    flex-direction: column;
    align-self: stretch;
    justify-content: center;
    text-align: center;
  }

  .page-home .metrics-ring .ring-note {
    max-width: 18em;
  }

  .page-home .metrics-footnote {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1024px) {
  .page-home .hero-copy {
    max-width: 760px;
  }

  .page-home .page-title {
    font-size: 4.4rem;
  }

  .page-home .page-lead {
    font-size: 1.05rem;
  }

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

@media (min-width: 1200px) {
  .page-home .hero-inner {
    max-width: var(--container-max);
  }

  .page-home .update-list {
    max-width: 860px;
  }
}

@keyframes homeBlink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.45;
  }
}

.page-home .tag-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: homeBlink 1.2s infinite alternate;
}
