.page-home {
  background: linear-gradient(160deg, #0A1128 0%, #0D1530 40%, #0A1128 100%);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .breadcrumb {
  margin: 24px 0 8px;
  font-size: 13px;
  color: var(--text-gray);
}
.page-home .breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}
.page-home .breadcrumb a:hover {
  color: var(--gold);
}
.page-home .crumb-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}
.page-home .breadcrumb [aria-current="page"] {
  color: var(--gold);
}

.page-home .home-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A227 60%, #00C2FF);
  transform: skewX(-30deg);
  transform-origin: right center;
}
.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin: 0;
}
.page-home .home-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vmin, 56px);
  line-height: 1.1;
  font-weight: 700;
  margin: 16px 0 20px;
  letter-spacing: 0.02em;
  color: var(--text-light);
}
.page-home .title-highlight {
  position: relative;
  color: var(--gold);
}
.page-home .title-highlight::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0));
}
.page-home .hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 58ch;
  border-left: 3px solid rgba(201, 162, 39, 0.35);
  padding-left: 16px;
  margin-bottom: 28px;
}
.page-home .chapter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .chapter-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(22, 35, 61, 0.6), rgba(17, 26, 45, 0.4));
  border: 1px solid transparent;
  border-left: 2px solid var(--cyan);
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.page-home .chapter-link:hover {
  border-left-color: var(--gold);
  background: rgba(17, 26, 45, 0.9);
  transform: translateX(4px);
}
.page-home .chapter-index {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 13px;
}

.page-home .hero-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
.page-home .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.page-home .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.85) 0%, rgba(10, 17, 40, 0.25) 55%, rgba(201, 162, 39, 0.15) 100%);
}
.page-home .hero-round {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(10, 17, 40, 0.82);
  border: 2px solid var(--gold);
  color: var(--text-light);
  text-decoration: none;
  z-index: 2;
  transition: transform 0.2s;
}
.page-home .hero-round:hover {
  transform: scale(1.06);
}
.page-home .hero-round .status-dot {
  position: absolute;
  top: 15px;
  right: 15px;
}
.page-home .hero-round-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-gray);
}
.page-home .hero-round-num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.page-home .live-section,
.page-home .tools-section,
.page-home .feed-section {
  padding: clamp(40px, 5vw, 72px) 0;
}
.page-home .live-section {
  background: linear-gradient(180deg, rgba(22, 35, 61, 0.3), rgba(10, 17, 40, 0));
}
.page-home .section-head {
  margin-bottom: 18px;
}
.page-home .section-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.page-home .section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  position: relative;
  padding-left: 18px;
}
.page-home .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 8px;
  height: 0.8em;
  background: linear-gradient(180deg, var(--gold), var(--purple));
  transform: skewX(-12deg);
}
.page-home .section-intro {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 640px;
  margin: -6px 0 24px;
  line-height: 1.7;
}
.page-home .live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .data-panel {
  background: linear-gradient(145deg, var(--bg-raised) 0%, var(--bg-panel) 60%);
  padding: 22px 18px 20px;
  border: 1px solid rgba(201, 162, 39, 0.14);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  min-width: 0;
}
.page-home .panel-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 14px;
  font-family: var(--font-head);
}
.page-home .trend-svg,
.page-home .round-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.page-home .trend-svg text,
.page-home .round-svg text {
  font-family: var(--font-body);
}
.page-home .timeline-link {
  margin-top: 16px;
}

.page-home .tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .tool-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.page-home .tool-media {
  position: relative;
}
.page-home .tool-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: saturate(1.15);
}
.page-home .tool-media--filter img {
  height: 200px;
  object-position: center 30%;
}
.page-home .tool-media--reel {
  background: #0A1128;
  padding: 18px;
}
.page-home .reel-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.page-home .reel-svg text {
  font-family: var(--font-body);
}
.page-home .tool-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.page-home .tool-tag {
  align-self: flex-start;
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #08101F;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.page-home .tool-title {
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--text-light);
  margin: 0;
}
.page-home .tool-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.page-home .feed-title-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.page-home .feed-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.page-home .filter-label {
  color: var(--text-gray);
  font-size: 13px;
  margin-right: 2px;
}
.page-home .filter-btn {
  padding: 6px 16px;
  border: 1px solid var(--border-cyan);
  background: rgba(0, 194, 255, 0.06);
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.page-home .filter-btn:hover {
  border-color: var(--cyan);
  color: var(--text-light);
}
.page-home .filter-btn.is-active {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-color: transparent;
  color: #08101F;
  font-weight: 600;
}
.page-home .feed-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .feed-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.page-home .feed-aside img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  display: block;
}
.page-home .feed-note {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  background: rgba(17, 26, 45, 0.7);
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  margin: 0;
}
.page-home .feed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.page-home .feed-item {
  background: linear-gradient(135deg, rgba(17, 26, 45, 0.9), rgba(22, 35, 61, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid transparent;
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s;
  min-width: 0;
}
.page-home .feed-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.page-home .feed-cat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.page-home .feed-cat {
  font-size: 12px;
  padding: 2px 10px;
  border: 1px solid;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.page-home .cat-news {
  color: var(--cyan);
  border-color: var(--border-cyan);
  background: rgba(0, 194, 255, 0.08);
}
.page-home .cat-review {
  color: var(--purple);
  border-color: rgba(122, 90, 248, 0.3);
  background: rgba(122, 90, 248, 0.08);
}
.page-home .cat-tool {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(201, 162, 39, 0.08);
}
.page-home .feed-round {
  font-size: 12px;
  color: var(--green);
  font-family: var(--font-mono);
}
.page-home .feed-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.page-home .feed-title a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.page-home .feed-title a:hover {
  color: var(--gold);
}
.page-home .feed-excerpt {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 8px 0 12px;
}
.page-home .feed-more {
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
}
.page-home .feed-more:hover {
  color: var(--gold);
}

.page-home .stats-section {
  position: relative;
  padding: clamp(40px, 5vw, 72px) 0;
  overflow: hidden;
}
.page-home .stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .stats-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 17, 40, 0.93) 0%, rgba(10, 17, 40, 0.72) 60%, rgba(10, 17, 40, 0.88) 100%);
}
.page-home .stats-inner {
  position: relative;
  z-index: 2;
}
.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.page-home .stat-cell {
  text-align: center;
  background: rgba(17, 26, 45, 0.78);
  padding: 24px 12px 20px;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(4px);
  min-width: 0;
}
.page-home .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.5vmin, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.page-home .stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 8px;
}
.page-home .stats-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-top: 8px;
}
.page-home .stats-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}
.page-home .stats-cert .status-dot {
  flex-shrink: 0;
}

.page-home .connect-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 32px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.page-home .connect-strip p {
  margin: 0;
  font-size: 16px;
  color: var(--text-light);
  font-family: var(--font-head);
}
.page-home .connect-strip .btn {
  margin-right: 4px;
}

.page-home [data-reveal] {
  will-change: opacity, transform;
}
.page-home [data-reveal="visible"] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 860px) {
  .page-home .home-hero {
    grid-template-columns: 55% 45%;
    gap: 44px;
  }
  .page-home .hero-visual {
    min-height: 400px;
  }
  .page-home .live-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .feed-title-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .page-home .feed-layout {
    grid-template-columns: 280px 1fr;
  }
  .page-home .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .stats-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-home .connect-strip {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .page-home .connect-strip p {
    margin-right: auto;
  }
  .page-home .tool-media--filter img {
    height: 240px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero {
    padding-top: 72px;
  }
  .page-home .hero-desc {
    font-size: 16px;
  }
  .page-home .feed-layout {
    grid-template-columns: 320px 1fr;
  }
}
