.page-home {
  --hero-gradient: linear-gradient(135deg, #2B0A3D 0%, #3D1B5E 55%, #FF2A7E 130%);
  --glow-accent: 0 0 14px rgba(255, 42, 126, 0.55);
  --glow-neon: 0 0 14px rgba(0, 229, 255, 0.45);
  --diagonal: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  background: var(--color-bg-deep);
  color: var(--color-paper);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

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

.page-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 230, 200, 0.55);
}

.page-home .breadcrumb__separator {
  color: var(--color-neon);
  font-weight: 700;
}

.page-home .page-context {
  position: relative;
  z-index: 3;
}

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

.page-home .section__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
  position: relative;
  padding-left: 0;
}

.page-home .section__head .section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-bg-ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: var(--glow-accent);
  margin-bottom: 8px;
}

.page-home .section__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 0 22px rgba(255, 42, 126, 0.4);
}

.page-home .section__desc {
  margin: 4px 0 0;
  font-size: 15px;
  color: rgba(245, 230, 200, 0.7);
  max-width: 480px;
}

.page-home .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 8px currentColor;
}

.page-home .status-dot--active {
  background: var(--color-success);
  color: var(--color-success);
}

.page-home .status-dot--warn {
  background: var(--color-error);
  color: var(--color-error);
}

.page-home .tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 42, 126, 0.16);
  color: var(--color-accent);
  border: 1px solid rgba(255, 42, 126, 0.4);
}

.page-home .tag--soft {
  background: rgba(0, 229, 255, 0.12);
  color: var(--color-neon);
  border-color: rgba(0, 229, 255, 0.3);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: none;
  cursor: pointer;
}

.page-home .btn--primary {
  background: var(--color-accent);
  color: #1A0B2E;
  box-shadow: 0 0 18px rgba(255, 42, 126, 0.45);
}

.page-home .btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 42, 126, 0.7);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--color-paper);
  border: 1px solid rgba(245, 230, 200, 0.35);
  box-shadow: none;
}

.page-home .btn--ghost:hover {
  border-color: var(--color-neon);
  box-shadow: var(--glow-neon);
  transform: translateY(-3px);
}

.page-home .hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 180%;
  background: linear-gradient(115deg, rgba(255, 42, 126, 0.22) 0%, rgba(0, 229, 255, 0.06) 40%, transparent 70%);
  transform: rotate(18deg);
  filter: blur(60px);
  pointer-events: none;
}

.page-home .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.page-home .hero__copy {
  max-width: 640px;
  position: relative;
}

.page-home .hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-neon);
  margin-bottom: 18px;
}

.page-home .hero__kicker-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--color-neon);
  box-shadow: var(--glow-neon);
}

.page-home .hero__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--color-paper);
  text-shadow: 0 0 30px rgba(255, 42, 126, 0.55), 0 0 60px rgba(0, 229, 255, 0.2);
  letter-spacing: 0.01em;
}

.page-home .hero__title-sub {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: rgba(245, 230, 200, 0.75);
  text-shadow: none;
  margin-top: 8px;
}

.page-home .hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 230, 200, 0.85);
  margin: 0 0 28px;
  max-width: 560px;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.page-home .hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: rgba(245, 230, 200, 0.6);
}

.page-home .hero__meta li {
  display: flex;
  align-items: center;
}

.page-home .hero__visual {
  position: relative;
  min-height: 320px;
  display: none;
}

.page-home .hero__shape {
  position: absolute;
}

.page-home .hero__shape--one {
  top: 10%;
  right: 4%;
  width: 220px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #8A2BE2 100%);
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
  transform: rotate(8deg);
  box-shadow: 0 0 40px rgba(255, 42, 126, 0.35);
}

.page-home .hero__shape--two {
  top: 5%;
  right: 26%;
  width: 140px;
  height: 200px;
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.85) 0%, rgba(0, 229, 255, 0.15) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  transform: rotate(-12deg);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
}

.page-home .hero__shape--three {
  bottom: 6%;
  right: 12%;
  width: 100px;
  height: 100px;
  background: rgba(245, 230, 200, 0.2);
  border: 2px solid rgba(245, 230, 200, 0.5);
  border-radius: 50%;
  transform: skewX(-14deg);
  backdrop-filter: blur(6px);
}

.page-home .hero__shape--four {
  bottom: 16%;
  right: 34%;
  width: 70px;
  height: 70px;
  background: rgba(255, 42, 126, 0.25);
  border: 2px solid rgba(255, 42, 126, 0.7);
  transform: rotate(45deg) skewX(-10deg);
}

.page-home .hero__glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(255, 42, 126, 0.3) 0%, transparent 70%);
  filter: blur(30px);
}

.page-home .quick-entry {
  background: linear-gradient(180deg, transparent 0%, rgba(61, 27, 94, 0.5) 30%, transparent 100%);
}

.page-home .quick-entry__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .quick-entry__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
}

.page-home .quick-entry__visual img {
  display: block;
  width: 100%;
  min-height: 200px;
}

.page-home .quick-entry__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 10, 61, 0.1) 0%, rgba(43, 10, 61, 0.75) 80%);
}

.page-home .quick-entry__visual-note {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-paper);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

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

.page-home .entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.page-home .entry-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(255, 42, 126, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .entry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 229, 255, 0.15);
}

.page-home .entry-card--primary {
  background: linear-gradient(135deg, rgba(255, 42, 126, 0.85) 0%, rgba(138, 43, 226, 0.75) 100%);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(255, 42, 126, 0.35);
}

.page-home .entry-card--primary::before {
  background: radial-gradient(circle at top right, rgba(245, 230, 200, 0.5) 0%, transparent 70%);
}

.page-home .entry-card--neon {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.16) 0%, rgba(61, 27, 94, 0.5) 100%);
  border-color: rgba(0, 229, 255, 0.4);
}

.page-home .entry-card__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  color: var(--color-neon);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.page-home .entry-card--primary .entry-card__num {
  color: var(--color-bg-ink);
}

.page-home .entry-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--color-paper);
}

.page-home .entry-card--primary .entry-card__name {
  color: #1A0B2E;
}

.page-home .entry-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 230, 200, 0.65);
  margin-bottom: 16px;
  flex-grow: 1;
}

.page-home .entry-card--primary .entry-card__desc {
  color: rgba(26, 11, 46, 0.8);
}

.page-home .entry-card__tag {
  align-self: flex-start;
  margin-bottom: 8px;
}

.page-home .entry-card__arrow {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 22px;
  color: var(--color-neon);
  transition: transform 0.3s ease;
}

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

.page-home .update-list {
  background: linear-gradient(180deg, rgba(26, 11, 46, 0.35) 0%, transparent 100%);
}

.page-home .update-list__banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.page-home .update-list__banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

.page-home .update-list__banner::after {
  content: "更新日期透明标注 · 信息可溯";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-paper);
  background: rgba(43, 10, 61, 0.65);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  letter-spacing: 0.04em;
}

.page-home .update-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-home .update-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 74px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-neon) 50%, transparent 100%);
  box-shadow: 0 0 10px rgba(255, 42, 126, 0.4);
}

.page-home .update-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 18px 0;
  position: relative;
}

.page-home .update-item__time {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--color-neon);
  text-align: right;
  padding-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .update-item__content {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .update-item__content:hover {
  border-color: rgba(255, 42, 126, 0.4);
  box-shadow: 0 0 20px rgba(255, 42, 126, 0.12);
}

.page-home .update-item__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--color-paper);
}

.page-home .update-item__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 230, 200, 0.7);
  margin: 0 0 10px;
}

.page-home .featured {
  background: linear-gradient(180deg, transparent 0%, rgba(61, 27, 94, 0.4) 50%, transparent 100%);
}

.page-home .featured__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .featured__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 42, 126, 0.3);
  box-shadow: 0 0 40px rgba(255, 42, 126, 0.2);
}

.page-home .featured__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255, 42, 126, 0.15) 100%);
}

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

.page-home .featured__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .topic-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-home .topic-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
}

.page-home .topic-card__index {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-neon);
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 8px;
  padding: 6px 8px;
  flex-shrink: 0;
}

.page-home .topic-card__body {
  flex: 1;
}

.page-home .topic-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-paper);
  margin: 0 0 6px;
}

.page-home .topic-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 230, 200, 0.7);
  margin: 0 0 10px;
}

.page-home .topic-card__meta {
  font-size: 12px;
  color: rgba(245, 230, 200, 0.5);
  letter-spacing: 0.04em;
}

.page-home .topic-card__arrow {
  font-size: 20px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.page-home .topic-card:hover .topic-card__arrow {
  transform: translate(3px, -3px);
}

.page-home .calendar-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .calendar-section__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
  order: 2;
}

.page-home .calendar-section__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.page-home .week-calendar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: 1;
}

.page-home .week-calendar__day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: baseline;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 18px;
  border-left: 4px solid var(--color-accent);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.page-home .week-calendar__day:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 16px rgba(255, 42, 126, 0.15);
}

.page-home .week-calendar__day:nth-child(5),
.page-home .week-calendar__day:nth-child(6),
.page-home .week-calendar__day:nth-child(7) {
  border-left-color: var(--color-neon);
}

.page-home .week-calendar__day-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-paper);
  letter-spacing: 0.06em;
}

.page-home .week-calendar__task {
  font-size: 14px;
  color: rgba(245, 230, 200, 0.75);
  line-height: 1.5;
}

.page-home .trust-band {
  margin-top: 32px;
  background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.25) 0%, transparent 70%);
  border-top: 1px solid rgba(255, 42, 126, 0.25);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.page-home .trust-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-home .trust-band__item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.page-home .trust-band__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 42, 126, 0.15);
  border: 1px solid rgba(255, 42, 126, 0.4);
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(255, 42, 126, 0.2);
}

.page-home .trust-band__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--color-paper);
}

.page-home .trust-band__text {
  font-size: 13px;
  color: rgba(245, 230, 200, 0.65);
  margin: 0;
}

.page-home .trust-band__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.page-home .trust-band__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neon);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.page-home .trust-band__links a:hover {
  background: rgba(0, 229, 255, 0.12);
  box-shadow: var(--glow-neon);
}

@media (min-width: 768px) {
  .page-home .section {
    padding: 96px 0 64px;
  }

  .page-home .section__head {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .page-home .section__head .section-index {
    margin-bottom: 0;
  }

  .page-home .section__title {
    font-size: 42px;
  }

  .page-home .section__desc {
    margin-left: auto;
    text-align: right;
    font-size: 16px;
  }

  .page-home .hero {
    padding: 72px 0 80px;
  }

  .page-home .hero__inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
    align-items: center;
  }

  .page-home .hero__visual {
    display: block;
  }

  .page-home .hero__title {
    font-size: 58px;
  }

  .page-home .hero__title-sub {
    font-size: 30px;
  }

  .page-home .hero__lead {
    font-size: 17px;
  }

  .page-home .quick-entry__layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
  }

  .page-home .quick-entry__visual {
    position: sticky;
    top: 110px;
  }

  .page-home .quick-entry__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .page-home .entry-card--primary {
    grid-column: span 2;
  }

  .page-home .entry-card--neon {
    grid-column: span 2;
  }

  .page-home .update-item {
    grid-template-columns: 84px 1fr;
  }

  .page-home .update-timeline::before {
    left: 84px;
  }

  .page-home .featured__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .page-home .calendar-section__layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 44px;
  }

  .page-home .calendar-section__visual {
    order: 1;
  }

  .page-home .week-calendar {
    order: 2;
  }

  .page-home .trust-band__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
  }

  .page-home .trust-band__links {
    grid-column: span 3;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .page-home .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-home .hero__title {
    font-size: 68px;
  }

  .page-home .hero__title-sub {
    font-size: 34px;
  }

  .page-home .hero__lead {
    font-size: 18px;
  }

  .page-home .quick-entry__layout {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .page-home .entry-card {
    padding: 28px;
  }

  .page-home .entry-card__name {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
