.page-home {
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: var(--bg-dark);
  clip-path: polygon(0 100%, 0 60%, 100% 0, 100% 100%);
  z-index: 2;
  pointer-events: none;
}

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

.page-home .home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.15) brightness(0.52);
}

.page-home .home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.82) 0%, rgba(5, 7, 13, 0.28) 42%, rgba(5, 7, 13, 0.58) 100%);
}

.page-home .home-hero-beam {
  position: absolute;
  left: -18%;
  top: -12%;
  width: 80%;
  height: 140%;
  background: linear-gradient(115deg, transparent 10%, rgba(0, 255, 163, 0.08) 40%, rgba(0, 212, 255, 0.14) 55%, transparent 75%);
  transform: rotate(-16deg);
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-total) + 44px);
  padding-bottom: 132px;
}

.page-home .home-hero-kicker {
  font-family: var(--font-data);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 20px;
}

.page-home .home-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 9em;
  transform: skew(-5deg);
  color: var(--text-main);
  text-shadow: 0 0 44px rgba(0, 255, 163, 0.2), 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-home .home-hero-desc {
  margin-top: 22px;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-sub);
}

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

.page-home .home-hero-meta {
  position: absolute;
  top: calc(var(--header-total) + 14px);
  right: 14px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.page-home .home-hero-live,
.page-home .home-hero-sound {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.8125rem;
  line-height: 1.2;
}

.page-home .home-hero-live {
  display: none;
  background: rgba(0, 255, 163, 0.12);
  border: 1px solid rgba(0, 255, 163, 0.35);
  color: var(--green);
}

.page-home .home-hero-sound {
  background: rgba(11, 17, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-sub);
}

.page-home .home-hero-live i,
.page-home .home-hero-sound i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .home-hero-live i {
  background: var(--green);
  animation: page-home-live-pulse 1.6s infinite ease-in-out;
}

.page-home .home-hero-sound i {
  background: var(--blue);
  opacity: 0.9;
}

.page-home .btn {
  padding: 12px 22px;
  font-weight: 700;
  transform: skew(-3deg);
}

.page-home .btn-primary {
  background: var(--gradient);
  border: none;
  color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(0, 255, 163, 0.28);
}

.page-home .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.page-home .section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.page-home .section-header-text {
  flex: 1;
  min-width: 0;
}

.page-home .section-no {
  font-family: var(--font-data);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--gold);
  white-space: nowrap;
}

.page-home .section-title {
  font-weight: 900;
  transform: skew(-5deg);
}

.page-home .section-desc {
  margin-top: 8px;
  max-width: 640px;
  color: var(--text-sub);
  line-height: 1.7;
}

@keyframes page-home-live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.86);
  }
}

.page-home .home-featured {
  position: relative;
  background: var(--bg-dark);
  padding-top: 16px;
  padding-bottom: 24px;
}

.page-home .home-featured-viewport {
  margin-top: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-featured-track {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  padding: 4px max(24px, calc((100vw - var(--container)) / 2)) 8px;
}

.page-home .home-featured-card {
  flex: 0 0 min(560px, 88vw);
  scroll-snap-align: center;
  background: var(--bg-float);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-home .home-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 255, 163, 0.12), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.page-home .home-featured-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-home .home-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-featured-info {
  padding: 22px 24px 26px;
}

.page-home .home-featured-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--green);
}

.page-home .home-featured-info h3,
.page-home .home-featured-card-alt h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 10px 0 8px;
  transform: skew(-3deg);
  color: var(--text-main);
}

.page-home .home-featured-info p,
.page-home .home-featured-card-alt p {
  color: var(--text-sub);
  line-height: 1.7;
}

.page-home .home-featured-card-alt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px;
  background:
    linear-gradient(135deg, rgba(0, 255, 163, 0.07) 0%, transparent 45%),
    linear-gradient(315deg, rgba(0, 212, 255, 0.09) 0%, transparent 50%),
    var(--bg-float);
}

.page-home .home-featured-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.page-home .home-featured-points li {
  position: relative;
  padding-left: 16px;
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.page-home .home-featured-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}

.page-home .home-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  font-size: 0.9375rem;
}

.page-home .home-featured-link::after {
  content: "→";
  transition: transform 0.2s;
}

.page-home .home-featured-card:hover .home-featured-link::after {
  transform: translateX(4px);
}

.page-home .home-featured-hint {
  margin-top: 10px;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  text-align: right;
  color: var(--text-sub);
  font-size: 0.8125rem;
  font-family: var(--font-data);
}

.page-home .home-compare {
  background: var(--bg-dark);
  padding-bottom: 24px;
}

.page-home .home-compare-panel {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .home-compare-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  opacity: 0.32;
}

.page-home .home-compare-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.78) 0%, rgba(5, 7, 13, 0.45) 50%, rgba(5, 7, 13, 0.92) 100%);
}

.page-home .home-compare-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 20px;
}

.page-home .home-compare-box {
  border-radius: 10px;
  padding: 24px 22px;
  background: rgba(11, 17, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.page-home .home-compare-box-home {
  border-top: 3px solid var(--green);
}

.page-home .home-compare-box-away {
  border-top: 3px solid var(--blue);
}

.page-home .home-compare-side {
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--text-main);
}

.page-home .home-compare-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.page-home .home-compare-box li {
  position: relative;
  padding-left: 14px;
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.page-home .home-compare-box-home li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  background: var(--green);
}

.page-home .home-compare-box-away li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.page-home .home-compare-vs {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--bg-dark);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  margin: 0 auto;
  box-shadow: 0 0 26px rgba(0, 255, 163, 0.4);
  flex-shrink: 0;
}

.page-home .home-compare-note {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 32px;
  color: var(--text-sub);
  font-size: 0.875rem;
  font-family: var(--font-data);
  line-height: 1.7;
}

.page-home .home-coverage {
  padding-top: 64px;
}

.page-home .home-coverage-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.page-home .home-coverage-item {
  position: relative;
  padding: 26px 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.page-home .home-coverage-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 3px;
  background: var(--gradient);
}

.page-home .home-coverage-icon {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.page-home .home-coverage-type {
  display: block;
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.page-home .home-coverage-res {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--blue);
  font-size: 0.8125rem;
  font-family: var(--font-data);
}

.page-home .home-coverage-note {
  margin-top: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 184, 76, 0.06);
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-home .home-rhythm {
  padding-top: 64px;
}

.page-home .home-rhythm-steps {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.page-home .home-rhythm-step {
  position: relative;
  padding: 24px 22px;
  background: var(--bg-float);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.page-home .home-rhythm-day {
  display: inline-flex;
  font-family: var(--font-data);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
}

.page-home .home-rhythm-step p {
  margin-top: 10px;
  color: var(--text-sub);
  line-height: 1.7;
}

.page-home .home-rhythm-devices {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .home-rhythm-devices img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .home-rhythm-support {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9375rem;
}

.page-home .home-rhythm-support a {
  color: var(--blue);
  text-decoration: none;
}

.page-home .home-rhythm-support a:hover {
  text-decoration: underline;
}

.page-home .home-brief {
  position: relative;
  background: var(--bg-float);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.page-home .home-brief::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(0, 255, 163, 0.08), transparent 70%);
  pointer-events: none;
}

.page-home .home-brief .container {
  position: relative;
  z-index: 1;
}

.page-home .home-brief-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.page-home .home-brief-stat {
  padding: 26px 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 13, 0.35);
  text-align: center;
}

.page-home .home-brief-num {
  display: block;
  font-family: var(--font-data);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold);
  font-size: clamp(2rem, 7vw, 3.4rem);
}

.page-home .home-brief .data-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-sub);
}

.page-home .home-brief-timeline {
  margin-top: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--blue);
  background: rgba(0, 212, 255, 0.06);
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-home .home-brief-cert {
  margin-top: 18px;
  text-align: center;
  color: var(--text-sub);
  font-size: 0.875rem;
}

.page-home .home-brief-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 768px) {
  .page-home .home-hero-title {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
  }

  .page-home .home-hero-meta {
    flex-direction: row;
    right: max(24px, calc((100vw - var(--container)) / 2));
  }

  .page-home .home-hero-live {
    display: inline-flex;
  }

  .page-home .home-featured-card {
    flex-basis: min(560px, 46vw);
  }

  .page-home .home-compare-inner {
    flex-direction: row;
    align-items: stretch;
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .page-home .home-compare-box {
    flex: 1;
  }

  .page-home .home-compare-vs {
    margin: 0;
    align-self: center;
  }

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

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

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

@media (min-width: 1024px) {
  .page-home .home-hero-title {
    font-size: clamp(3.6rem, 7vw, 6rem);
  }

  .page-home .home-compare-panel img {
    height: 620px;
  }

  .page-home .home-featured-card {
    flex-basis: 560px;
  }

  .page-home .home-rhythm-step {
    padding: 30px 28px;
  }
}
