.page-home {
  --home-hero-gradient: linear-gradient(150deg, #0B1B3A 0%, #1a2f60 56%, #0A1128 100%);
  --home-card-shadow: 0 10px 30px rgba(11, 27, 58, 0.08);
}

/* ===== HERO ===== */
.page-home .home-hero {
  position: relative;
  background: var(--home-hero-gradient);
  color: var(--off-white);
  padding: 32px 0 96px;
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  height: 130%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.32), rgba(198, 255, 0, 0.08));
  transform: skewX(-12deg);
  z-index: 0;
  pointer-events: none;
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.page-home .home-hero__breadcrumb {
  position: relative;
  z-index: 2;
}
.page-home .home-hero__breadcrumb .breadcrumb__list {
  margin: 0;
  padding: 0;
}
.page-home .home-hero .breadcrumb__item a {
  color: rgba(246, 243, 238, 0.62);
  text-decoration: none;
}
.page-home .home-hero .breadcrumb__item--current {
  color: rgba(246, 243, 238, 0.88);
}
.page-home .home-hero__brandline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 6px 12px;
  background: rgba(198, 255, 0, 0.12);
  color: var(--electric-green);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  border-left: 3px solid var(--electric-green);
}
.page-home .home-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--off-white);
}
.page-home .home-hero__title span {
  color: var(--brand-orange);
}
.page-home .home-hero__lead {
  font-size: 18px;
  font-weight: 700;
  color: rgba(246, 243, 238, 0.9);
  margin: 0 0 14px;
}
.page-home .home-hero__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246, 243, 238, 0.76);
  margin: 0 0 28px;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .home-hero__actions .btn {
  padding: 14px 26px;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: var(--radius);
  background: var(--brand-orange);
  color: var(--off-white);
}
.page-home .home-hero__actions .btn--outline {
  background: transparent;
  border: 1px solid rgba(246, 243, 238, 0.45);
  color: var(--off-white);
}
.page-home .home-hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 13px;
  color: rgba(246, 243, 238, 0.64);
}
.page-home .home-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-home .home-hero__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  aspect-ratio: 4 / 3;
  background: #13264d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}
.page-home .home-hero__pitch {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.page-home .home-hero__pitch::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(198, 255, 0, 0.22);
  border-radius: 16px;
}
.page-home .home-hero__pitch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32%;
  height: 180px;
  border: 2px solid rgba(198, 255, 0, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.page-home .home-hero__floating {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  background: var(--glass-white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink-900);
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.page-home .home-hero__skew {
  position: absolute;
  bottom: 32px;
  left: -10%;
  width: 80%;
  height: 6px;
  background: var(--grad-spectrum);
  transform: rotate(-2deg);
  z-index: 1;
  opacity: 0.75;
  pointer-events: none;
}

/* ===== QUICK ACCESS ===== */
.page-home .home-access {
  background: var(--off-white);
  padding: 64px 0 72px;
}
.page-home .home-access__head {
  max-width: 680px;
  margin-bottom: 32px;
}
.page-home .home-access__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.page-home .filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: #E6E1D8;
  color: var(--ink-600);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.page-home .filter-btn.is-active {
  background: var(--deep-navy);
  color: var(--off-white);
}
.page-home .home-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .home-access__card {
  display: block;
  position: relative;
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: var(--home-card-shadow);
  text-decoration: none;
  color: var(--ink-900);
  border: 1px solid rgba(11, 27, 58, 0.08);
  border-left: 5px solid var(--brand-orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .home-access__card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: var(--electric-green);
  opacity: 0.12;
  transform: skewX(-14deg);
  border-radius: 2px;
}
.page-home .home-access__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 27, 58, 0.14);
}
.page-home .home-access__card-num {
  font-family: var(--font-num);
  font-size: 36px;
  line-height: 1;
  color: var(--deep-navy);
  display: block;
  margin-bottom: 12px;
}
.page-home .home-access__card-title {
  font-size: 20px;
  margin: 0 0 10px;
  font-family: var(--font-title);
}
.page-home .home-access__card-desc {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 16px;
  line-height: 1.7;
}
.page-home .home-access__card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== PREVIEW ===== */
.page-home .home-preview {
  background: var(--deep-navy);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.page-home .home-preview__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.page-home .home-preview .section__kicker {
  color: var(--electric-green);
}
.page-home .home-preview .section__title {
  color: var(--off-white);
}
.page-home .home-preview__text {
  max-width: 640px;
}
.page-home .home-preview__list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}
.page-home .home-preview__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: rgba(246, 243, 238, 0.78);
  font-size: 15px;
  line-height: 1.7;
}
.page-home .home-preview__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--electric-green);
  transform: skewX(-18deg);
}
.page-home .home-preview__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-home .home-preview__coverage {
  padding: 24px;
  background: var(--glass-white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: var(--ink-900);
}
.page-home .home-preview__coverage-list {
  margin: 16px 0 0;
}
.page-home .home-preview__coverage-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 27, 58, 0.1);
  font-size: 14px;
}
.page-home .home-preview__coverage-row:last-child {
  border-bottom: 0;
}
.page-home .home-preview__coverage-row dt {
  font-weight: 700;
  flex-shrink: 0;
}
.page-home .home-preview__coverage-row dd {
  margin: 0;
  text-align: right;
  color: var(--ink-600);
}
.page-home .home-preview__note .side-note {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(246, 243, 238, 0.46);
  height: 90px;
}

/* ===== CALENDAR ===== */
.page-home .home-calendar {
  background: var(--off-white);
  color: var(--ink-900);
  padding: 72px 0 80px;
}
.page-home .home-calendar__head {
  max-width: 720px;
  margin-bottom: 40px;
}
.page-home .home-calendar__media {
  margin-bottom: 36px;
}
.page-home .home-calendar__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 27, 58, 0.12);
}
.page-home .home-calendar__pitch-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(198, 255, 0, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 255, 0, 0.25) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-home .home-calendar__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-calendar__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--deep-navy);
  color: var(--electric-green);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}
.page-home .home-calendar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.page-home .home-calendar__item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border-left: 4px solid var(--brand-orange);
  box-shadow: 0 6px 20px rgba(11, 27, 58, 0.06);
}
.page-home .home-calendar__item .stat-num {
  font-family: var(--font-num);
  font-size: 30px;
  line-height: 1;
  color: var(--brand-orange);
  display: block;
  margin-bottom: 8px;
}
.page-home .home-calendar__item h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.page-home .home-calendar__item p {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.7;
}

/* ===== INDEX ===== */
.page-home .home-index {
  background: var(--deep-navy);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.page-home .home-index::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -10%;
  width: 40%;
  height: 60%;
  background: rgba(255, 107, 0, 0.14);
  transform: skewX(-14deg);
  pointer-events: none;
}
.page-home .home-index__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.page-home .home-index__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.page-home .home-index__content .section__kicker {
  color: var(--electric-green);
}
.page-home .home-index__content .section__title {
  color: var(--off-white);
}
.page-home .home-index__content .section__lede {
  color: rgba(246, 243, 238, 0.7);
}
.page-home .home-index__content p {
  color: rgba(246, 243, 238, 0.72);
  line-height: 1.8;
}
.page-home .home-index__list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}
.page-home .home-index__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: rgba(246, 243, 238, 0.78);
  font-size: 15px;
}
.page-home .home-index__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--brand-orange);
  transform: skewX(-18deg);
}
.page-home .home-index__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-index__actions .btn--outline {
  background: transparent;
  border: 1px solid rgba(246, 243, 238, 0.5);
  color: var(--off-white);
}
.page-home .home-index__actions .btn--ghost {
  background: rgba(198, 255, 0, 0.08);
  color: var(--electric-green);
}

/* ===== SPEED ===== */
.page-home .home-speed {
  background: var(--off-white);
  color: var(--ink-900);
  padding: 72px 0 80px;
}
.page-home .home-speed__head {
  max-width: 720px;
  margin-bottom: 44px;
}
.page-home .home-speed__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.page-home .home-speed__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .home-speed__item {
  background: #fff;
  border-radius: 10px;
  padding: 26px 24px;
  border-left: 4px solid var(--brand-orange);
  box-shadow: 0 6px 20px rgba(11, 27, 58, 0.06);
}
.page-home .home-speed__num {
  font-family: var(--font-num);
  font-size: 46px;
  line-height: 1;
  color: var(--deep-navy);
  display: block;
  margin-bottom: 10px;
}
.page-home .home-speed__item h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.page-home .home-speed__item p {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.7;
}
.page-home .home-speed__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 27, 58, 0.12);
}
.page-home .home-speed__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-speed__dial {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--electric-green);
  background: rgba(11, 27, 58, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--electric-green);
  box-shadow: 0 0 30px rgba(198, 255, 0, 0.25);
}
.page-home .home-speed__dial-num {
  font-size: 30px;
  line-height: 1;
}
.page-home .home-speed__dial-label {
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0.08em;
}

/* ===== CONNECT ===== */
.page-home .home-connect {
  background: linear-gradient(135deg, #FF6B00 0%, #FFC700 100%);
  color: var(--ink-900);
}
.page-home .home-connect__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.page-home .home-connect__text {
  max-width: 600px;
}
.page-home .home-connect__text .section__kicker {
  color: var(--deep-navy);
  opacity: 0.8;
}
.page-home .home-connect__title {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.page-home .home-connect__text p {
  color: rgba(10, 17, 40, 0.7);
}
.page-home .home-connect__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-home .home-connect__actions .btn {
  background: var(--deep-navy);
  color: var(--off-white);
}
.page-home .home-connect__actions .btn--outline {
  background: transparent;
  border: 1px solid rgba(10, 17, 40, 0.5);
  color: var(--ink-900);
}

/* ===== 响应式 ===== */
@media (min-width: 720px) {
  .page-home .home-access__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-calendar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 40px 0 120px;
  }
  .page-home .home-hero__inner {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: center;
  }
  .page-home .home-hero__title {
    font-size: clamp(3rem, 6vw, 5rem);
  }
  .page-home .home-hero__floating {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
  .page-home .home-preview__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
  .page-home .home-index__inner {
    grid-template-columns: 0.9fr 1.05fr;
    gap: 64px;
  }
  .page-home .home-speed__body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  .page-home .home-connect__inner {
    padding: 12px 0;
  }
}

@media (min-width: 1440px) {
  .page-home .home-hero__title {
    font-size: 5.2rem;
  }
}
