.page-home {
  --home-space: clamp(3rem, 6vw, 6rem);
  --home-card-bg: linear-gradient(145deg, rgba(18, 41, 74, 0.88), rgba(11, 29, 58, 0.94));
  --home-card-border: 1px solid rgba(192, 200, 208, 0.16);
  --home-accent: #FF6B35;
  --home-accent-2: #FF8C42;
  --home-line: rgba(192, 200, 208, 0.18);
  background: #0B1D3A;
  color: #F2F4F8;
  overflow-x: hidden;
}

.page-home .breadcrumb {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(242, 244, 248, 0.6);
}
.page-home .breadcrumb a {
  color: rgba(242, 244, 248, 0.8);
  text-decoration: none;
}
.page-home .breadcrumb a:hover {
  color: var(--home-accent);
}
.page-home .breadcrumb .sep {
  margin: 0 0.5rem;
  color: rgba(242, 244, 248, 0.3);
}

.page-home .home-toc {
  max-width: var(--container-max);
  margin: 1rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  font-family: var(--font-mono);
}
.page-home .home-toc::-webkit-scrollbar {
  display: none;
}
.page-home .toc-title {
  flex: 0 0 auto;
  margin-right: 0.35rem;
  font-size: 0.72rem;
  color: rgba(242, 244, 248, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .toc-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  color: rgba(242, 244, 248, 0.78);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.page-home .toc-link em {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--home-accent);
}
.page-home .toc-link:hover {
  color: #fff;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.1);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem) 1.25rem;
  margin-top: 1rem;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(255, 107, 53, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(33, 87, 143, 0.2) 0%, transparent 55%),
    linear-gradient(135deg, #0B1D3A 0%, #12294A 55%, #0B1D3A 100%);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85), transparent 80%);
}
.page-home .hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
.page-home .hero-eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--home-accent-2);
  text-transform: uppercase;
}
.page-home .hero-content h1 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-home .hero-desc {
  margin: 1.1rem 0 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(242, 244, 248, 0.82);
  max-width: 44em;
}
.page-home .hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.page-home .hero-actions .btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
}
.page-home .hero-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--home-line);
}
.page-home .quick-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.page-home .quick-stat strong {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: #fff;
}
.page-home .quick-stat span {
  font-size: 0.75rem;
  color: rgba(242, 244, 248, 0.56);
}

.page-home .hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.page-home .hero-card {
  position: relative;
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 152px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.page-home .hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.page-home .hero-card-accent {
  background: linear-gradient(140deg, rgba(255, 107, 53, 0.92), rgba(255, 140, 66, 0.78));
  border-color: transparent;
}
.page-home .hero-card-dark {
  background: var(--home-card-bg);
}
.page-home .hc-label {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}
.page-home .hc-value {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
}
.page-home .hero-card-accent .hc-value {
  color: #0B1D3A;
}
.page-home .hc-unit {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}
.page-home .hc-note {
  margin: 0.7rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}
.page-home .hc-link {
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--home-accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-home .hero-card-img {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
}
.page-home .hero-card-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: calc(var(--radius-lg) - 2px);
  object-fit: cover;
}

.page-home .home-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--home-space) 1.25rem;
}
.page-home .section-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.page-home .section-tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--home-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-home .section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--home-accent), transparent);
}
.page-home .heading-text h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  color: #fff;
}
.page-home .section-lead {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: rgba(242, 244, 248, 0.6);
}

.page-home .home-highlights {
  border-bottom: 1px solid var(--home-line);
}
.page-home .highlights-grid {
  display: grid;
  gap: 1rem;
}
.page-home .highlight-card {
  position: relative;
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background: var(--home-card-bg);
  padding: 1.5rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.page-home .hl-card-primary {
  background:
    linear-gradient(160deg, rgba(255, 107, 53, 0.16), transparent 60%),
    var(--home-card-bg);
}
.page-home .hl-card-tertiary {
  background:
    linear-gradient(200deg, rgba(39, 174, 96, 0.12), transparent 55%),
    var(--home-card-bg);
}
.page-home .hl-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.page-home .hl-index {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--home-accent);
}
.page-home .highlight-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.page-home .highlight-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.72);
}
.page-home .hl-data {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid var(--home-line);
}
.page-home .hl-data strong {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--home-accent-2);
}
.page-home .hl-data span {
  font-size: 0.76rem;
  color: rgba(242, 244, 248, 0.55);
}

.page-home .home-schedule {
  border-bottom: 1px solid var(--home-line);
}
.page-home .schedule-layout {
  display: grid;
  gap: 1.25rem;
}
.page-home .schedule-card {
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background: var(--home-card-bg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.page-home .table-scroll {
  overflow-x: auto;
  margin-bottom: 0.9rem;
}
.page-home .schedule-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.page-home .schedule-table thead th {
  text-align: left;
  padding: 0.7rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(242, 244, 248, 0.5);
  border-bottom: 1px solid rgba(192, 200, 208, 0.2);
}
.page-home .schedule-table tbody td {
  padding: 0.8rem 0.65rem;
  border-bottom: 1px solid rgba(192, 200, 208, 0.1);
  color: rgba(242, 244, 248, 0.82);
}
.page-home .schedule-table tbody tr {
  transition: background 0.2s;
}
.page-home .schedule-table tbody tr:hover {
  background: rgba(255, 107, 53, 0.06);
}
.page-home .match-ligue {
  display: inline-block;
  min-width: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}
.page-home .price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--home-accent);
}
.page-home .price-hot {
  color: var(--home-accent-2);
  position: relative;
}
.page-home .price-hot::after {
  content: "热门";
  margin-left: 0.4rem;
  padding: 0.1rem 0.4rem;
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 4px;
  font-size: 0.62rem;
  color: var(--home-accent-2);
  white-space: nowrap;
}
.page-home .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  vertical-align: middle;
  margin-right: 0.35rem;
}
.page-home .table-footnote {
  font-size: 0.74rem;
  color: rgba(242, 244, 248, 0.5);
  margin: 0 0 0.8rem;
}

.page-home .schedule-aside .aside-card {
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 107, 53, 0.08), transparent 50%),
    var(--home-card-bg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
}
.page-home .aside-card h3 {
  margin: 0.6rem 0 0.8rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #fff;
}
.page-home .trend-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(192, 200, 208, 0.12);
  display: block;
  object-fit: cover;
}
.page-home .aside-card p {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.68);
}
.page-home .text-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--home-accent-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 140, 66, 0.4);
  padding-bottom: 1px;
}
.page-home .text-link:hover {
  color: #fff;
  border-color: #fff;
}

.page-home .home-threshold {
  border-bottom: 1px solid var(--home-line);
}
.page-home .threshold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.page-home .threshold-item {
  position: relative;
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background: var(--home-card-bg);
  padding: 1.25rem;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.page-home .threshold-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.page-home .th-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--home-accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.page-home .threshold-item h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(242, 244, 248, 0.66);
}
.page-home .th-amount {
  margin: 0.3rem 0 0;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.page-home .th-detail {
  margin: 0.4rem 0 0;
  font-size: 0.74rem;
  color: rgba(242, 244, 248, 0.52);
}
.page-home .threshold-note {
  margin: 1.2rem 0 0;
  font-size: 0.76rem;
  color: rgba(242, 244, 248, 0.48);
  padding-left: 0.8rem;
  border-left: 2px solid var(--home-accent);
}

.page-home .home-data-panel {
  border-bottom: 1px solid var(--home-line);
}
.page-home .panel-wrap {
  display: grid;
  gap: 1.25rem;
}
.page-home .panel-main {
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background: var(--home-card-bg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
}
.page-home .panel-timeline {
  position: relative;
  padding-left: 1.4rem;
}
.page-home .tl-item {
  position: relative;
  padding: 0 0 1.4rem 1.2rem;
}
.page-home .tl-item:last-child {
  padding-bottom: 0.2rem;
}
.page-home .tl-line {
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0;
  width: 2px;
  background: rgba(255, 107, 53, 0.25);
}
.page-home .tl-item:last-child .tl-line {
  display: none;
}
.page-home .tl-dot {
  position: absolute;
  left: -0.36rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}
.page-home .tl-current .tl-dot {
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.15);
}
.page-home .tl-body h3 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.page-home .tl-body p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: rgba(242, 244, 248, 0.55);
}
.page-home .panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--home-line);
}
.page-home .panel-stat-item {
  text-align: center;
  padding: 0.9rem 0.4rem;
  border: 1px solid rgba(192, 200, 208, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.page-home .panel-stat-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--home-accent-2);
}
.page-home .panel-stat-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.7rem;
  color: rgba(242, 244, 248, 0.52);
}

.page-home .panel-side {
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 107, 53, 0.1), transparent 40%),
    var(--home-card-bg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.page-home .panel-side .section-tag {
  font-size: 0.72rem;
}
.page-home .panel-side h3 {
  margin: 0.5rem 0 0.8rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #fff;
}
.page-home .panel-side img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(192, 200, 208, 0.12);
  object-fit: cover;
}
.page-home .panel-side p {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(242, 244, 248, 0.66);
}
.page-home .panel-side .btn {
  margin-top: 1rem;
}

.page-home .home-experts {
  border-bottom: 1px solid var(--home-line);
}
.page-home .expert-grid {
  display: grid;
  gap: 1rem;
}
.page-home .expert-card {
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background: var(--home-card-bg);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
}
.page-home .expert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.page-home .expert-media {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #12294A, #0B1D3A);
}
.page-home .expert-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .expert-media-svg {
  display: grid;
  place-items: center;
}
.page-home .expert-media-svg svg {
  width: 70%;
  height: 70%;
}
.page-home .expert-media-lines {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(18, 41, 74, 0.8));
}
.page-home .expert-media-lines .line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--home-accent);
  opacity: 0.75;
}
.page-home .line-a {
  top: 30%;
}
.page-home .line-b {
  top: 50%;
  opacity: 0.5;
  right: 20%;
}
.page-home .line-c {
  top: 70%;
  opacity: 0.3;
  right: 30%;
}
.page-home .expert-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.page-home .expert-body .tag {
  align-self: flex-start;
  margin-bottom: 0.4rem;
}
.page-home .expert-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.page-home .expert-body p {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(242, 244, 248, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-home .expert-body .text-link {
  align-self: flex-start;
  margin-top: 0;
  font-size: 0.76rem;
}

.page-home .home-reach {
  border-bottom: 1px solid var(--home-line);
}
.page-home .reach-grid {
  display: grid;
  gap: 1rem;
}
.page-home .reach-card {
  border: var(--home-card-border);
  border-radius: var(--radius-lg);
  background: var(--home-card-bg);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, border-color 0.2s;
}
.page-home .reach-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
}
.page-home .reach-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.14);
  color: var(--home-accent);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.page-home .reach-label {
  font-size: 0.74rem;
  color: rgba(242, 244, 248, 0.5);
  letter-spacing: 0.04em;
}
.page-home .reach-value {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  word-break: break-all;
}
.page-home a.reach-value:hover {
  color: var(--home-accent-2);
}
.page-home .reach-sub {
  margin: 0.45rem 0 0;
  font-size: 0.76rem;
  color: rgba(242, 244, 248, 0.52);
  word-break: break-all;
}
.page-home .reach-bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.page-home .reach-bottom .btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.84rem;
}

@media (min-width: 640px) {
  .page-home .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .hl-card-primary {
    grid-column: 1 / -1;
  }
  .page-home .threshold-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .panel-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .expert-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .expert-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: 120px 1fr;
  }
  .page-home .expert-card:first-child .expert-media {
    width: 120px;
    height: 120px;
  }
  .page-home .reach-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .reach-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .page-home .home-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    padding-top: 0.4rem;
  }
  .page-home .home-toc {
    position: sticky;
    top: 0.5rem;
    z-index: 10;
    background: rgba(11, 29, 58, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(192, 200, 208, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    width: fit-content;
    max-width: 100%;
  }
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 3rem;
    align-items: center;
  }
  .page-home .hero-cards {
    grid-template-columns: 1fr 1fr;
    align-content: start;
  }
  .page-home .hero-card-img {
    grid-column: 1 / -1;
  }
  .page-home .hero-card-accent {
    grid-column: 1 / -1;
  }
  .page-home .schedule-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: start;
  }
  .page-home .panel-wrap {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
  }
  .page-home .expert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .expert-card:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .page-home .expert-card:first-child .expert-media {
    width: 100%;
    height: 140px;
  }
  .page-home .expert-card:first-child .expert-body h3 {
    font-size: 1.05rem;
  }
  .page-home .reach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .reach-card:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1280px) {
  .page-home .highlights-grid {
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
  }
  .page-home .hl-card-primary {
    grid-column: auto;
  }
  .page-home .highlight-card {
    min-height: 240px;
  }
  .page-home .hero-content {
    padding-right: 1.5rem;
  }
}
