.page-home {
  background: var(--color-white);
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-block: .8rem;
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(26, 42, 58, .06);
}

.page-home .breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.page-home .breadcrumb span:last-child {
  opacity: .65;
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, rgba(230, 180, 80, .14), transparent 30%), linear-gradient(140deg, #0E6FA8 0%, #0a5f93 66%, #123a5e 100%);
  color: var(--color-white);
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253, 246, 227, .96);
}

.page-home .hero-kicker::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--color-gold);
  flex: 0 0 auto;
}

.page-home .hero-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.2vw, 3.5rem);
  line-height: 1.08;
  margin: 1.1rem 0 1.25rem;
  text-wrap: balance;
}

.page-home .hero-lead {
  max-width: 36ch;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.8;
  color: rgba(253, 246, 227, .92);
  margin-bottom: .75rem;
}

.page-home .hero-note {
  font-family: var(--font-serif);
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(253, 246, 227, .9);
  margin-bottom: 2rem;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2.5rem;
}

.page-home .hero-actions .btn--outline {
  border-color: rgba(253, 246, 227, .7);
  color: var(--color-white);
}

.page-home .hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
  margin: 0;
  padding: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(253, 246, 227, .2);
}

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

.page-home .hero-facts strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #F8C47A;
  line-height: 1.2;
}

.page-home .hero-facts span {
  display: block;
  font-size: .7rem;
  color: rgba(253, 246, 227, .8);
  margin-top: .25rem;
}

.page-home .hero-art {
  position: relative;
  border-radius: 46% 54% 44% 56% / 48% 42% 58% 52%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(9, 45, 66, .35);
}

.page-home .hero-art::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(253, 246, 227, .45);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .hero-art-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: .5rem .8rem;
  background: rgba(26, 42, 58, .62);
  color: rgba(253, 246, 227, .9);
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .12em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

@media (min-width: 900px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}

.page-home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-home .section-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: .75rem 0 1rem;
}

.page-home .section-lead {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 60ch;
  color: var(--color-text);
}

.page-home .home-live {
  background: var(--color-white);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-home .live-index {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-home .live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .live-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.page-home .live-visual {
  position: relative;
  background: var(--color-gray);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .live-visual img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .live-events {
  list-style: none;
  margin: 0 0 1.5rem;
  border-left: 2px solid rgba(14, 111, 168, .2);
  padding-left: 0;
}

.page-home .live-event {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 4.5rem 1fr;
  gap: .6rem;
  align-items: baseline;
  padding: .875rem 0 .875rem 1.2rem;
}

.page-home .live-event::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(230, 180, 80, .18);
  animation: homePulse 2.6s ease-in-out infinite;
}

.page-home .live-event:nth-child(2)::before {
  background: var(--color-green);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, .18);
  animation: none;
}

.page-home .live-event:nth-child(3)::before {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .18);
  animation: none;
}

@keyframes homePulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(230, 180, 80, .18);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(230, 180, 80, .08);
  }
}

.page-home .live-time {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-primary);
}

.page-home .live-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .7rem;
  width: fit-content;
}

.page-home .live-status--yellow {
  background: rgba(230, 180, 80, .18);
  color: #8a6a0d;
}

.page-home .live-status--red {
  background: rgba(192, 57, 43, .14);
  color: var(--color-accent);
}

.page-home .live-status--score {
  background: rgba(39, 174, 96, .14);
  color: #1e8449;
}

.page-home .live-desc {
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.5;
  color: var(--color-text);
}

.page-home .live-refresh-note {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-gray);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: .875rem;
  line-height: 1.7;
  color: var(--color-text);
}

.page-home .live-refresh-note::before {
  content: "↻ ";
  color: var(--color-primary);
  font-weight: 700;
}

.page-home .live-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-home .live-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-home .metric {
  padding: .875rem 1rem;
  background: var(--color-white);
  border: 1px solid rgba(14, 111, 168, .14);
  border-radius: var(--radius);
}

.page-home .metric-value {
  display: block;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-primary);
  line-height: 1.1;
}

.page-home .metric-label {
  display: block;
  font-size: .7rem;
  color: var(--color-text);
  opacity: .75;
  margin-top: .25rem;
}

.page-home .live-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

.page-home .home-panel {
  background: var(--color-gray);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-home .panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .panel-inner {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

.page-home .panel-art {
  width: min(100%, 300px);
  margin-inline: auto;
  padding: 10px;
  background: var(--color-dark);
  border-radius: 38px;
  transform: rotate(-2deg);
  box-shadow: 0 22px 50px rgba(26, 42, 58, .22);
}

.page-home .panel-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

.page-home .panel-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.page-home .panel-features li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  align-items: start;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.page-home .panel-features li::before {
  content: "◆";
  font-size: .7rem;
  color: var(--color-accent);
  transform: translateY(.2rem);
}

.page-home .panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: 1.5rem;
}

.page-home .home-archive {
  background: var(--color-dark);
  color: var(--color-white);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-home .archive-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .archive-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(2.5rem, 6vw, 4.5rem);
  }
}

.page-home .home-archive .section-kicker {
  color: var(--color-gold);
}

.page-home .home-archive .section-title {
  color: var(--color-white);
}

.page-home .home-archive .section-lead {
  color: rgba(253, 246, 227, .85);
}

.page-home .archive-points {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.page-home .archive-points li {
  position: relative;
  padding-left: 1.9rem;
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(253, 246, 227, .9);
}

.page-home .archive-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.page-home .archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: 1.5rem;
}

.page-home .archive-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
}

.page-home .archive-art::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(253, 246, 227, .28);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
  z-index: 1;
}

.page-home .archive-art img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.page-home .archive-art-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: .5rem .8rem;
  background: rgba(26, 42, 58, .62);
  color: rgba(253, 246, 227, .9);
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .08em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.page-home .home-feedback {
  background: linear-gradient(140deg, #b83228, #C0392B 55%, #a93226);
  color: var(--color-white);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-home .home-feedback .section-kicker {
  color: rgba(253, 246, 227, .92);
}

.page-home .home-feedback .section-title {
  color: var(--color-white);
}

.page-home .home-feedback .section-lead {
  color: rgba(253, 246, 227, .9);
}

.page-home .feedback-index {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-home .feedback-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .page-home .feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .feedback-card,
.page-home .feedback-email {
  position: relative;
  background: rgba(253, 246, 227, .1);
  border: 1px solid rgba(253, 246, 227, .25);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 14px 35px rgba(84, 20, 10, .18);
}

.page-home .feedback-step {
  display: block;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.page-home .feedback-card h3,
.page-home .feedback-email h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 .75rem;
  color: var(--color-white);
}

.page-home .feedback-card p,
.page-home .feedback-email p {
  font-family: var(--font-serif);
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(253, 246, 227, .88);
  margin-bottom: .75rem;
}

.page-home .feedback-email {
  background: rgba(230, 180, 80, .13);
  border-color: rgba(230, 180, 80, .45);
}

.page-home .feedback-email .btn {
  margin-top: .5rem;
}

.page-home .feedback-note {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: .875rem;
  color: rgba(253, 246, 227, .85);
}

.page-home .feedback-link {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
