.page-home {
  --home-hero-h: 640px;
  --home-grid-gap: 20px;
  --home-accent-rgb: 255, 107, 53;
  background: var(--c-deep);
  color: var(--c-white);
}

.page-home .container {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-slate);
  margin-bottom: 20px;
}

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

.page-home .breadcrumb a:hover {
  color: var(--c-white);
}

.page-home .crumb-current {
  color: var(--c-white);
}

.page-home .eyebrow {
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.page-home .home-hero {
  position: relative;
  min-height: var(--home-hero-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.page-home .hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--grad-panel);
}

.page-home .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, var(--c-deep) 0%, rgba(10, 25, 47, 0.85) 40%, rgba(10, 25, 47, 0.55) 70%, rgba(17, 34, 64, 0.7) 100%),
    linear-gradient(0deg, var(--c-deep) 0%, transparent 30%, transparent 80%, var(--c-deep) 100%);
}

.page-home .hero-grid-line {
  position: absolute;
  right: -80px;
  top: 18%;
  width: 500px;
  height: 2px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, var(--c-accent2), var(--c-accent));
  transform: rotate(-15deg);
  opacity: 0.5;
  box-shadow: 0 0 12px var(--glow);
}

.page-home .hero-diamond {
  position: absolute;
  right: 10%;
  top: 22%;
  width: 70px;
  height: 70px;
  z-index: 0;
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.25);
  transform: rotate(45deg);
  opacity: 0.7;
}

.page-home .hero-diamond::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.08);
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 28px;
  padding-bottom: 28px;
}

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

.page-home .hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.page-home .hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--c-slate);
  margin: 0 0 28px;
  max-width: 540px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn-cta {
  background: var(--grad-cta);
  color: #0d1117;
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.35);
}

.page-home .btn-cta:hover {
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
}

.page-home .btn-outline {
  border-color: rgba(230, 241, 255, 0.4);
  color: var(--c-white);
  background: transparent;
}

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

.page-home .btn-ghost {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--c-accent);
}

.page-home .guide-link {
  display: inline-flex;
  align-items: center;
  color: var(--c-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(230, 241, 255, 0.35);
  padding: 6px 2px;
  transition: border-color 0.2s, color 0.2s;
}

.page-home .guide-link:hover {
  color: var(--c-accent2);
  border-bottom-color: var(--c-accent2);
}

.page-home .hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(230, 241, 255, 0.15);
}

.page-home .badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--c-accent2);
  font-family: var(--font-num);
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(57, 255, 20, 0.4);
  letter-spacing: 0.06em;
}

.page-home .hero-trust-text {
  font-size: 13px;
  color: var(--c-slate);
  line-height: 1.6;
}

.page-home .hero-stats {
  position: absolute;
  right: 20px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 14px 30px;
  background: rgba(10, 25, 47, 0.75);
  border: 1px solid rgba(230, 241, 255, 0.12);
  padding: 22px 28px;
  backdrop-filter: blur(6px);
  max-width: 300px;
}

.page-home .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .stat-num {
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.1;
}

.page-home .stat-label {
  font-size: 12px;
  color: var(--c-slate);
  letter-spacing: 0.08em;
}

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

.page-home .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
}

.page-home .section-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
  line-height: 1.25;
}

.page-home .lead {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-home .note-vertical {
  position: absolute;
  right: -6px;
  top: -26px;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  color: rgba(230, 241, 255, 0.28);
}

.page-home .bento {
  background:
    linear-gradient(rgba(17, 34, 64, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 34, 64, 0.35) 1px, transparent 1px);
  background-size: 40px 40px;
  border-top: 1px solid rgba(230, 241, 255, 0.08);
  border-bottom: 1px solid rgba(230, 241, 255, 0.08);
}

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

.page-home .card {
  background: var(--c-card);
  border: 1px solid rgba(230, 241, 255, 0.08);
  padding: 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-home .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: #203258;
}

.page-home .card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 800;
}

.page-home .card-desc {
  font-size: 13px;
  color: var(--c-slate);
  margin: 0;
  line-height: 1.6;
}

.page-home .card-calendar-main {
  border-top: 2px solid var(--c-accent);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .calendar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.page-home .star-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: var(--c-accent);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

.page-home .star-btn:hover {
  background: var(--c-accent);
  color: #0d1117;
  transform: scale(1.08);
}

.page-home .calendar-illust {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.page-home .calendar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 0;
}

.page-home .calendar-list div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  border-bottom: 1px dashed rgba(230, 241, 255, 0.12);
  padding-bottom: 8px;
}

.page-home .calendar-list dt {
  min-width: 56px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .calendar-list dd {
  margin: 0;
  font-family: var(--font-num);
  color: var(--c-slate);
}

.page-home .calendar-list dd:last-child {
  margin-left: auto;
}

.page-home .live-status {
  color: var(--c-accent2) !important;
  font-size: 12px;
}

.page-home .subscribe-confirm {
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.35);
  color: var(--c-accent2);
  font-size: 13px;
  padding: 12px 14px;
  line-height: 1.6;
}

.page-home .calendar-cta {
  margin-top: auto;
  align-self: flex-start;
}

.page-home .arrow-right {
  font-family: var(--font-num);
}

.page-home .card-subscribe {
  background: rgba(17, 34, 64, 0.8);
  border-left: 3px solid var(--c-accent2);
}

.page-home .card-subscribe p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0 0 14px;
}

.page-home .card-subscribe strong {
  color: var(--c-white);
  font-family: var(--font-num);
}

.page-home .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.page-home .feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
}

.page-home .feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-accent2);
  font-weight: 700;
}

.page-home .card-venue {
  background: linear-gradient(135deg, var(--c-mid), var(--c-card));
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .card-venue img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

.page-home .card-venue p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

.page-home .card-venue .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .card-guide {
  border: 1px dashed rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.05);
}

.page-home .card-guide p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0 0 16px;
}

.page-home .guide-steps {
  margin: 0 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.page-home .guide-steps li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
}

.page-home .guide-steps li::marker {
  color: var(--c-accent);
  font-family: var(--font-num);
}

.page-home .tilt {
  transform: rotate(-0.4deg);
}

.page-home .tilt-right {
  transform: rotate(0.4deg);
}

.page-home .section-head .btn {
  padding: 8px 16px;
  font-size: 13px;
  flex-shrink: 0;
}

.page-home .home-sports {
  background: var(--c-deep);
}

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

.page-home .sport-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 14px;
  background: var(--c-mid);
  border: 1px solid rgba(230, 241, 255, 0.08);
  text-decoration: none;
  color: var(--c-white);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.page-home .sport-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity 0.2s;
}

.page-home .sport-card:hover {
  transform: translateY(-4px) rotate(0deg);
  border-color: rgba(255, 107, 53, 0.5);
  background: #203258;
}

.page-home .sport-card:hover::before {
  opacity: 1;
}

.page-home .sport-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: rgba(230, 241, 255, 0.06);
  padding: 6px;
  box-sizing: border-box;
}

.page-home .sport-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}

.page-home .sport-meta {
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--c-accent);
}

.page-home .sport-hot {
  font-family: var(--font-num);
  font-size: 11px;
  color: var(--c-slate);
  background: rgba(230, 241, 255, 0.05);
  display: inline-block;
  padding: 2px 6px;
  align-self: flex-start;
  transition: color 0.2s;
}

.page-home .sport-card:hover .sport-hot {
  color: var(--c-accent2);
}

.page-home .sports-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--c-slate);
  padding: 12px 0;
  border-top: 1px solid rgba(230, 241, 255, 0.06);
}

.page-home .home-venue {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(255, 107, 53, 0.12), transparent 45%),
    var(--c-deep);
  border-top: 1px solid rgba(230, 241, 255, 0.06);
}

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

.page-home .venue-feature {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .venue-feature img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.page-home .venue-feature-body {
  padding: 24px;
}

.page-home .venue-feature-body h3 {
  margin-bottom: 14px;
}

.page-home .venue-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .stat-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(230, 241, 255, 0.12);
}

.page-home .stat-block .stat-num {
  font-size: 30px;
  color: var(--c-accent);
}

.page-home .stat-block .stat-label {
  font-size: 14px;
}

.page-home .venue-tip {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-slate);
  background: rgba(57, 255, 20, 0.05);
  border-left: 2px solid var(--c-accent2);
  padding: 10px 12px;
  margin: 0;
}

.page-home .venue-stats .btn {
  align-self: flex-start;
}

.page-home .home-updates {
  background: var(--c-mid);
  border-top: 1px solid rgba(230, 241, 255, 0.08);
}

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

.page-home .update-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.page-home .update-card .badge-live {
  align-self: flex-start;
}

.page-home .update-card h3 {
  margin-bottom: 0;
}

.page-home .update-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
  flex-grow: 1;
}

.page-home .update-card a {
  color: var(--c-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.page-home .update-card a:hover {
  color: var(--c-accent2);
  border-bottom-color: var(--c-accent2);
}

.page-home .home-faq {
  background: var(--c-deep);
  border-top: 1px solid rgba(230, 241, 255, 0.08);
}

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

.page-home .faq-item {
  padding: 20px 22px;
  background: var(--c-card);
  border-left: 3px solid var(--c-accent);
}

.page-home .faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.page-home .faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
  margin: 0;
}

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

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

  .page-home .card-calendar-main {
    grid-column: 1 / -1;
  }

  .page-home .calendar-illust {
    height: 220px;
  }

  .page-home .card-venue {
    grid-column: 1 / -1;
  }

  .page-home .venue-feature {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .venue-feature img {
    max-height: 100%;
    height: 100%;
  }

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

  .page-home .update-card:first-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 900px) {
  .page-home .hero-stats {
    left: auto;
    right: 3%;
  }

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

  .page-home .bento-grid {
    grid-template-columns: 2fr 1fr;
  }

  .page-home .card-calendar-main {
    grid-column: 1 / 2;
    grid-row: span 2;
  }

  .page-home .card-subscribe {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .page-home .card-venue {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .page-home .card-guide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }

  .page-home .card-guide .guide-steps {
    margin: 0;
  }

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

  .page-home .venue-grid {
    grid-template-columns: 1.4fr 1fr;
  }

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

  .page-home .update-card:first-child {
    grid-column: auto;
  }

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