.page-home {
  --frame-radius: 18px;
  --glow: rgba(0, 255, 136, 0.14);
  --panel-border: rgba(226, 232, 240, 0.14);
  background: var(--space);
}

.page-home .page-home__hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 480px at 85% -10%, rgba(0, 255, 136, 0.10), transparent 65%), var(--space);
}

.page-home .page-home__hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(226, 232, 240, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 232, 240, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 75% 10%, #000 5%, transparent 65%);
  mask-image: radial-gradient(ellipse at 75% 10%, #000 5%, transparent 65%);
}

.page-home .breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

.page-home .breadcrumb__link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .breadcrumb__link:hover {
  color: var(--neon);
}

.page-home .breadcrumb__sep {
  color: rgba(226, 232, 240, 0.3);
}

.page-home .breadcrumb__current {
  color: #fff;
  font-weight: 500;
}

.page-home .frame-window {
  position: relative;
  z-index: 1;
  border-radius: var(--frame-radius);
  background: linear-gradient(180deg, #0b1d38 0%, #091a31 100%);
  border: 1px solid var(--panel-border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(0, 255, 136, 0.05);
  overflow: hidden;
}

.page-home .frame-window__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(17, 34, 64, 0.85);
  border-bottom: 1px solid var(--panel-border);
}

.page-home .frame-window__controls {
  display: flex;
  gap: 6px;
}

.page-home .frame-window__ctl {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.page-home .frame-window__ctl--close {
  background: #ff5f57;
}

.page-home .frame-window__ctl--min {
  background: #febc2e;
}

.page-home .frame-window__ctl--max {
  background: #28c840;
}

.page-home .frame-window__status {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.page-home .frame-window__url {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.55);
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.page-home .frame-window__content {
  padding: 36px 22px 42px;
}

.page-home .frame-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-home .frame-hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex: none;
}

.page-home .frame-hero__title {
  font-size: clamp(28px, 7vw, 46px);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.page-home .frame-hero__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  margin: 0 0 24px;
  max-width: 640px;
}

.page-home .frame-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .page-home__updates {
  background: var(--cream);
  color: var(--ink);
}

.page-home .page-home__updates .section-title,
.page-home .page-home__updates .section-lead {
  color: var(--ink);
}

.page-home .page-home__updates .section-eyebrow {
  color: var(--orange);
}

.page-home .updates-grid {
  align-items: center;
}

.page-home .updates-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .updates-list__item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.page-home .updates-list__item:last-child {
  border-bottom: 0;
}

.page-home .page-home__updates .tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
}

.page-home .page-home__updates .tag--green {
  background: rgba(0, 255, 136, 0.18);
  color: #0b6b3c;
}

.page-home .page-home__updates .tag--orange {
  background: rgba(255, 107, 53, 0.18);
  color: #9a3f0a;
}

.page-home .page-home__updates .tag--cream {
  background: rgba(26, 26, 26, 0.08);
  color: #1a1a1a;
}

.page-home .updates-grid__media {
  margin: 0;
}

.page-home .updates-grid__img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.page-home .page-home__categories {
  position: relative;
}

.page-home .page-home__categories::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.35), transparent);
  opacity: 0.6;
}

.page-home .categories-bento {
  margin-top: 28px;
}

.page-home .category-card {
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.page-home .category-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  background: var(--glow);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.page-home .category-card:hover::after {
  opacity: 1;
}

.page-home .category-card--events {
  border-top: 3px solid var(--neon);
}

.page-home .category-card--tools {
  border-top: 3px solid var(--orange);
}

.page-home .category-card--account {
  border-top: 3px solid var(--moon);
}

.page-home .category-card__foot {
  margin-top: auto;
  padding-top: 14px;
}

.page-home .text-link {
  color: var(--neon);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.page-home .text-link:hover {
  color: var(--orange);
}

.page-home .categories-bento__media {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.page-home .categories-bento__img,
.page-home .version-spotlight__img,
.page-home .export-flow__img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .page-home__version {
  position: relative;
}

.page-home .version-spotlight {
  display: grid;
  gap: 28px;
  align-items: center;
  background: radial-gradient(520px 260px at 85% 100%, rgba(0, 255, 136, 0.10), transparent 70%), linear-gradient(135deg, #0c2138 0%, var(--space) 100%);
  border: 1px solid rgba(0, 255, 136, 0.20);
  border-radius: 20px;
  padding: 28px 22px;
}

.page-home .version-spotlight__content .section-title {
  color: #fff;
}

.page-home .version-spotlight__content .section-lead {
  color: var(--gray);
}

.page-home .version-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 14px;
}

.page-home .version-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: linear-gradient(92deg, var(--neon) 0%, var(--neon-end) 100%);
  color: #032818;
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-heading);
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  position: relative;
  box-shadow: 0 6px 26px rgba(0, 255, 136, 0.28);
}

.page-home .version-badge::after {
  content: "更新日期见品牌日志";
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  z-index: 10;
}

.page-home .version-badge:hover::after {
  opacity: 1;
}

.page-home .version-badge__note {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.55);
}

.page-home .version-spotlight__tip {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0 0 18px;
}

.page-home .version-spotlight__media {
  margin: 0;
}

.page-home .version-spotlight__img {
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.page-home .page-home__export {
  background: var(--cream);
  color: var(--ink);
}

.page-home .page-home__export .section-title,
.page-home .page-home__export .section-lead {
  color: var(--ink);
}

.page-home .page-home__export .section-eyebrow {
  color: var(--orange);
}

.page-home .export-flow {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .export-flow__media {
  margin: 0;
}

.page-home .export-flow__img {
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(26, 26, 26, 0.14);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.page-home .export-steps {
  list-style: none;
  counter-reset: export;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .export-steps li {
  counter-increment: export;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.page-home .export-steps li::before {
  content: counter(export, decimal-leading-zero);
  width: 36px;
  height: 36px;
  background: var(--space);
  color: var(--neon);
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.page-home .export-flow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .export-flow__actions .text-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(26, 26, 26, 0.3);
  text-underline-offset: 4px;
}

.page-home .export-flow__actions .text-link:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.page-home .page-home__help {
  background: var(--space);
}

.page-home .help-grid {
  display: grid;
  gap: 24px;
}

.page-home .help-card {
  padding: 30px 24px;
  border-radius: 18px;
  background: var(--space-light);
  border: 1px solid rgba(226, 232, 240, 0.10);
}

.page-home .help-card--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: transparent;
}

.page-home .help-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-home .help-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.page-home .help-card--cream .help-card__title {
  color: var(--ink);
}

.page-home .help-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.72);
  margin-bottom: 20px;
}

.page-home .help-card--cream p {
  color: rgba(26, 26, 26, 0.7);
}

.page-home .page-home__meta {
  background: linear-gradient(180deg, var(--space), #071426);
}

.page-home .page-home__meta .section-title {
  color: #fff;
}

.page-home .page-home__meta .section-lead {
  color: var(--gray);
}

.page-home .meta-panel {
  background: rgba(17, 34, 64, 0.82);
  border: 1px solid rgba(0, 255, 136, 0.16);
  border-radius: 20px;
  padding: 28px 20px;
}

.page-home .meta-panel__row {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.page-home .meta-panel__item {
  padding: 16px;
  border-radius: 14px;
  background: rgba(10, 25, 47, 0.8);
  border-left: 3px solid var(--neon);
}

.page-home .meta-panel__label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.page-home .meta-panel__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.page-home .meta-panel__note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  margin-top: 18px;
}

.page-home .meta-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

@media (min-width: 640px) {
  .page-home .frame-window__content {
    padding: 44px 32px 52px;
  }

  .page-home .frame-window__url {
    max-width: 260px;
  }

  .page-home .category-card {
    padding: 24px;
  }

  .page-home .help-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-home .meta-panel {
    padding: 36px 32px;
  }

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

  .page-home .meta-panel__note {
    margin-top: 24px;
  }
}

@media (min-width: 960px) {
  .page-home .frame-window__content {
    padding: 56px 44px 64px;
  }

  .page-home .frame-hero__lead {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

  .page-home .category-card {
    min-height: 190px;
    padding: 28px;
  }

  .page-home .version-spotlight {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    padding: 44px 48px;
  }

  .page-home .export-flow {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  .page-home .help-card {
    padding: 36px 32px;
  }
}
