.page-home {
  --home-green: #39FF88;
  --home-orange: #FF6B35;
  --home-bg-deep: #0B1020;
  --home-bg-card: #121A2E;
  --home-text: #F2F5F7;
  --home-muted: #8A94A6;
  --home-border: rgba(57, 255, 136, 0.22);
  --home-font-display: "Archivo Black", "DIN Condensed", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: "DIN Alternate", "Bahnschrift", "Roboto Mono", "Consolas", monospace;
  background: var(--home-bg-deep);
  color: var(--home-text);
  overflow-x: hidden;
  font-family: var(--home-font-body);
}

.page-home .container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--home-font-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin-bottom: 16px;
  font-weight: 700;
}

.page-home .section-label::before {
  content: "";
  width: 44px;
  height: 4px;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.page-home .section-label--alt {
  color: var(--home-green);
}

.page-home .section-label--alt::before {
  background: var(--home-green);
}

.page-home .section-desc {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 640px;
}

.page-home h2 {
  font-family: var(--home-font-display);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--home-text);
}

/* HERO */
.page-home .hero-framed {
  position: relative;
  min-height: 720px;
  padding: 132px 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 78% 30%, rgba(57, 255, 136, 0.1), transparent 42%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.08), transparent 38%),
    var(--home-bg-deep);
}

.page-home .hero-frame {
  position: absolute;
  inset: 70px 24px 48px;
  border: 1px solid rgba(57, 255, 136, 0.24);
  clip-path: polygon(0 24px, 24px 24px, 24px 0, calc(100% - 48px) 0, calc(100% - 48px) 18px, calc(100% - 18px) 18px, calc(100% - 18px) 24px, 100% 24px, 100% calc(100% - 48px), calc(100% - 24px) calc(100% - 48px), calc(100% - 24px) calc(100% - 18px), calc(100% - 48px) calc(100% - 18px), calc(100% - 48px) 100%, 18px 100%, 18px calc(100% - 12px), 0 calc(100% - 12px), 0 24px);
  pointer-events: none;
}

.page-home .hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.page-home .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.page-home .hero-copy {
  position: relative;
  z-index: 2;
}

.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--home-font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--home-green);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-home .eyebrow-dot {
  width: 10px;
  height: 10px;
  background: var(--home-green);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(57, 255, 136, 0.8);
}

.page-home .hero-copy h1 {
  font-family: var(--home-font-display);
  font-size: clamp(40px, 8vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--home-text);
}

.page-home .hero-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--home-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--home-font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 16px 26px;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform var(--yb-speed, 0.25s) var(--yb-ease, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow var(--yb-speed, 0.25s) var(--yb-ease, cubic-bezier(0.22, 1, 0.36, 1)), filter var(--yb-speed, 0.25s) var(--yb-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.page-home .btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.page-home .btn-accent {
  background: var(--home-orange);
  color: #0B1020;
  box-shadow: 0 8px 0 rgba(255, 107, 53, 0.22);
}

.page-home .btn-primary {
  background: var(--home-green);
  color: #0B1020;
  box-shadow: 0 8px 0 rgba(57, 255, 136, 0.18);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid rgba(242, 245, 247, 0.35);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 560px;
}

.page-home .hero-metric {
  border-left: 2px solid var(--home-green);
  padding: 6px 0 6px 14px;
  background: linear-gradient(90deg, rgba(57, 255, 136, 0.1), transparent 70%);
}

.page-home .metric-num {
  display: block;
  font-family: var(--home-font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--home-text);
  line-height: 1.2;
}

.page-home .metric-label {
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .hero-stage {
  position: relative;
  z-index: 1;
}

.page-home .hero-stage-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 28px, 28px 28px, 28px 0, calc(100% - 40px) 0, calc(100% - 40px) 16px, calc(100% - 16px) 16px, calc(100% - 16px) 28px, 100% 28px, 100% calc(100% - 40px), calc(100% - 24px) calc(100% - 40px), calc(100% - 24px) calc(100% - 16px), calc(100% - 40px) calc(100% - 16px), calc(100% - 40px) 100%, 16px 100%, 16px calc(100% - 12px), 0 calc(100% - 12px), 0 28px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.page-home .stage-tag {
  position: absolute;
  font-family: var(--home-font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  background: rgba(11, 16, 32, 0.82);
  border: 1px solid var(--home-border);
  color: var(--home-text);
  backdrop-filter: blur(6px);
}

.page-home .stage-tag--live {
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .tag-pulse {
  width: 8px;
  height: 8px;
  background: var(--home-orange);
  border-radius: 50%;
  animation: yb-pulse 1.4s ease-in-out infinite;
}

.page-home .stage-tag--score {
  bottom: 30px;
  left: 30px;
  font-size: 30px;
  font-weight: 700;
  color: var(--home-green);
  border-color: rgba(57, 255, 136, 0.4);
}

.page-home .stage-slash {
  position: absolute;
  width: 80px;
  height: 14px;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  right: 48px;
  bottom: 68px;
  transform: skewX(-12deg);
}

.page-home .hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.page-home .hero-scroll span {
  width: 4px;
  height: 24px;
  background: var(--home-green);
  opacity: 0.5;
  transform: skewX(-12deg);
}

/* ENTRY INDEX */
.page-home .entry-index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -20px;
  margin-bottom: 48px;
  position: relative;
  z-index: 4;
}

.page-home .entry-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--home-bg-2);
  border: 1px solid var(--home-border);
  color: var(--home-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background var(--yb-speed, 0.25s), border-color var(--yb-speed, 0.25s), color var(--yb-speed, 0.25s);
}

.page-home .entry-chip em {
  font-family: var(--home-font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--home-green);
}

.page-home .entry-chip:hover,
.page-home .entry-chip--active {
  background: var(--home-green);
  color: #0B1020;
}

.page-home .entry-chip:hover em,
.page-home .entry-chip--active em {
  color: #0B1020;
}

/* 01 PUSH */
.page-home .push-section {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(180deg, var(--home-bg-deep) 0%, #0D1424 100%);
}

.page-home .push-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-green) 20%, var(--home-orange) 70%, transparent);
}

.page-home .push-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 44px;
}

.page-home .chamfer-card {
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  clip-path: polygon(0 18px, 18px 18px, 18px 0, calc(100% - 30px) 0, calc(100% - 30px) 12px, calc(100% - 12px) 12px, calc(100% - 12px) 20px, 100% 20px, 100% calc(100% - 28px), calc(100% - 20px) calc(100% - 28px), calc(100% - 20px) calc(100% - 10px), calc(100% - 28px) calc(100% - 10px), calc(100% - 28px) 100%, 10px 100%, 10px calc(100% - 8px), 0 calc(100% - 8px), 0 18px);
  transition: transform var(--yb-speed, 0.25s) var(--yb-ease, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow var(--yb-speed, 0.25s) var(--yb-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.page-home .chamfer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(57, 255, 136, 0.12);
}

.page-home .push-panel,
.page-home .push-stream {
  padding: 32px 28px;
}

.page-home .push-panel-head,
.page-home .stream-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.page-home .panel-index {
  font-family: var(--home-font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--home-muted);
}

.page-home .panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--home-green);
}

.page-home .panel-status i {
  width: 8px;
  height: 8px;
  background: var(--home-green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(57, 255, 136, 0.8);
}

.page-home .panel-status--orange {
  color: var(--home-orange);
}

.page-home .panel-status--orange i {
  background: var(--home-orange);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.8);
}

.page-home .push-panel h3,
.page-home .push-stream h3 {
  font-family: var(--home-font-display);
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--home-text);
}

.page-home .push-panel p,
.page-home .push-stream p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-muted);
}

.page-home .push-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.page-home .push-tags span {
  font-size: 13px;
  color: var(--home-text);
  background: rgba(57, 255, 136, 0.08);
  border: 1px solid var(--home-border);
  padding: 6px 12px;
}

.page-home .btn-push {
  width: 100%;
  cursor: pointer;
  border: none;
  margin-top: 6px;
}

.page-home .btn-icon {
  width: 12px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
}

.page-home .push-note {
  margin-top: 14px;
  font-size: 12px;
}

.page-home .stream-hours {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  margin: 18px 0 24px;
}

.page-home .stream-hours span {
  flex: 1;
  background: linear-gradient(180deg, var(--home-green), rgba(57, 255, 136, 0.2));
  height: var(--h, 50%);
  clip-path: polygon(0 0, 100% 4px, 100% 100%, 0 100%);
  opacity: 0.8;
}

.page-home .stream-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.page-home .stream-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--home-text);
}

.page-home .stream-list li span {
  font-family: var(--home-font-mono);
  color: var(--home-green);
  font-size: 13px;
  min-width: 44px;
}

.page-home .stream-list li b {
  margin-left: auto;
  font-family: var(--home-font-mono);
  color: var(--home-text);
}

.page-home .btn-block {
  display: flex;
  width: 100%;
}

/* 02 DOWNLOAD */
.page-home .download-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(255, 107, 53, 0.1), transparent 28%),
    radial-gradient(circle at 15% 20%, rgba(57, 255, 136, 0.08), transparent 34%),
    var(--home-bg-deep);
  overflow: hidden;
}

.page-home .download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(125deg, transparent 0 40px, rgba(57, 255, 136, 0.03) 40px 41px);
}

.page-home .download-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(57, 255, 136, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .download-orbit::before,
.page-home .download-orbit::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px dashed rgba(57, 255, 136, 0.1);
  border-radius: 50%;
}

.page-home .download-orbit::after {
  inset: 92px;
  border-color: rgba(255, 107, 53, 0.14);
}

.page-home .download-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .download-copy {
  max-width: 680px;
}

.page-home .download-points {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .download-points li {
  padding-left: 22px;
  position: relative;
  color: var(--home-text);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .download-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 4px;
  background: var(--home-green);
  transform: skewX(-18deg);
}

.page-home .download-points strong {
  color: var(--home-green);
  font-weight: 700;
}

.page-home .download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.page-home .btn-download {
  background: var(--home-green);
  color: #0B1020;
  box-shadow: 0 8px 0 rgba(57, 255, 136, 0.18);
}

.page-home .btn-download--ios {
  background: var(--home-orange);
  box-shadow: 0 8px 0 rgba(255, 107, 53, 0.2);
}

.page-home .download-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .download-qr {
  display: flex;
  justify-content: center;
}

.page-home .qr-card {
  background: var(--home-bg-card);
  border: 1px solid var(--home-border);
  padding: 32px;
  text-align: center;
  clip-path: polygon(0 22px, 22px 22px, 22px 0, calc(100% - 34px) 0, calc(100% - 34px) 14px, calc(100% - 14px) 14px, calc(100% - 14px) 24px, 100% 24px, 100% calc(100% - 32px), calc(100% - 20px) calc(100% - 32px), calc(100% - 20px) calc(100% - 12px), calc(100% - 32px) calc(100% - 12px), calc(100% - 32px) 100%, 12px 100%, 12px calc(100% - 8px), 0 calc(100% - 8px), 0 22px);
}

.page-home .qr-pattern img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: contrast(1.05) brightness(1.05);
}

.page-home .qr-card p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--home-text);
}

.page-home .qr-card span {
  font-size: 13px;
  color: var(--home-muted);
}

/* 03 CASES */
.page-home .cases-section {
  padding: 88px 0;
  background: #0C1322;
}

.page-home .cases-banner {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  clip-path: polygon(0 24px, 24px 24px, 24px 0, calc(100% - 52px) 0, calc(100% - 52px) 16px, calc(100% - 16px) 16px, calc(100% - 16px) 24px, 100% 24px, 100% calc(100% - 44px), calc(100% - 24px) calc(100% - 44px), calc(100% - 24px) calc(100% - 12px), calc(100% - 44px) calc(100% - 12px), calc(100% - 44px) 100%, 16px 100%, 16px calc(100% - 8px), 0 calc(100% - 8px), 0 24px);
}

.page-home .cases-banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 240px;
}

.page-home .cases-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.1), rgba(11, 16, 32, 0.82));
}

.page-home .cases-banner-overlay p:last-child {
  max-width: 640px;
  color: var(--home-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.page-home .case-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
}

.page-home .case-filter > span {
  color: var(--home-muted);
  margin-right: 4px;
}

.page-home .case-filter a {
  color: var(--home-text);
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(57, 255, 136, 0.06);
  border: 1px solid var(--home-border);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--yb-speed, 0.25s), color var(--yb-speed, 0.25s);
}

.page-home .case-filter a:hover {
  background: var(--home-green);
  color: #0B1020;
}

.page-home .case-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-home .case-card {
  position: relative;
  background: var(--home-bg-card);
  border: 1px solid rgba(57, 255, 136, 0.16);
  padding: 22px 18px 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 12px, 12px 12px, 12px 0, calc(100% - 22px) 0, calc(100% - 22px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 14px, 100% 14px, 100% calc(100% - 20px), calc(100% - 14px) calc(100% - 20px), calc(100% - 14px) calc(100% - 6px), calc(100% - 20px) calc(100% - 6px), calc(100% - 20px) 100%, 8px 100%, 8px calc(100% - 4px), 0 calc(100% - 4px), 0 12px);
  transition: transform var(--yb-speed, 0.25s), border-color var(--yb-speed, 0.25s), background var(--yb-speed, 0.25s);
}

.page-home .case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 136, 0.6);
  background: #162036;
}

.page-home .case-no {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-green);
  opacity: 0.85;
}

.page-home .case-card h3 {
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--home-text);
  font-family: var(--home-font-display);
}

.page-home .case-tag {
  font-size: 12px;
  color: var(--home-orange);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.page-home .case-summary {
  font-size: 13px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home .cases-more {
  margin-top: 36px;
  text-align: center;
}

/* 04 HISTORY */
.page-home .history-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #0C1322 0%, #0B1020 100%);
}

.page-home .section-head--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.page-home .section-head--center .section-desc {
  margin-inline: auto;
}

.page-home .history-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 48px;
}

.page-home .filter-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--home-text);
  font-family: var(--home-font-mono);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(18, 26, 46, 0.7);
  transition: all var(--yb-speed, 0.25s);
}

.page-home .filter-year:hover,
.page-home .filter-year[aria-pressed="true"] {
  background: var(--home-green);
  color: #0B1020;
  border-color: var(--home-green);
}

.page-home .history-timeline {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 860px;
  margin-inline: auto;
}

.page-home .history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--home-green), rgba(57, 255, 136, 0.06));
}

.page-home .history-node {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-left: 0;
}

.page-home .node-year {
  position: relative;
  z-index: 2;
  font-family: var(--home-font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--home-green);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 26px;
}

.page-home .node-year::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--home-green);
  box-shadow: 0 0 14px rgba(57, 255, 136, 0.6);
}

.page-home .node-card {
  padding: 28px;
  position: relative;
}

.page-home .node-version {
  display: inline-block;
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: var(--home-orange);
  background: rgba(255, 107, 53, 0.1);
  border-left: 3px solid var(--home-orange);
  padding: 5px 12px;
  margin-bottom: 14px;
}

.page-home .node-card h3 {
  font-family: var(--home-font-display);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--home-text);
}

.page-home .node-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--home-muted);
  margin-bottom: 12px;
}

.page-home .text-link {
  color: var(--home-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--home-green);
  padding-bottom: 2px;
}

/* 05 REPORTS */
.page-home .reports-section {
  padding: 88px 0;
  background: #0D1424;
}

.page-home .reports-ticker {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 20px, 100% 100%, 40px 100%, 0 calc(100% - 20px));
}

.page-home .reports-ticker img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ticker-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  background: linear-gradient(90deg, rgba(11, 16, 32, 0.92) 0%, rgba(11, 16, 32, 0.5) 55%, rgba(11, 16, 32, 0.2) 100%);
}

.page-home .ticker-overlay h2 {
  font-size: clamp(30px, 5vw, 56px);
  margin-bottom: 12px;
}

.page-home .ticker-overlay p:last-child {
  max-width: 460px;
  color: var(--home-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.page-home .report-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.page-home .report-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(18, 26, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--home-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background var(--yb-speed, 0.25s), color var(--yb-speed, 0.25s);
}

.page-home .report-tab:hover,
.page-home .report-tab[aria-pressed="true"] {
  background: var(--home-orange);
  color: #0B1020;
  border-color: var(--home-orange);
}

.page-home .report-columns {
  columns: 1;
  column-gap: 20px;
}

.page-home .report-col {
  break-inside: avoid;
  margin-bottom: 20px;
}

.page-home .report-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--home-font-display);
  font-size: 20px;
  padding: 16px 0 12px;
  border-bottom: 2px solid var(--home-green);
  margin-bottom: 16px;
  color: var(--home-text);
}

.page-home .report-col-title span {
  color: var(--home-orange);
}

.page-home .report-item {
  background: var(--home-bg-card);
  border-left: 3px solid rgba(57, 255, 136, 0.5);
  padding: 20px 18px;
  margin-bottom: 14px;
  break-inside: avoid;
  transition: background var(--yb-speed, 0.25s), transform var(--yb-speed, 0.25s);
}

.page-home .report-item:hover {
  background: #162036;
  transform: translateX(4px);
}

.page-home .report-league {
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-orange);
  letter-spacing: 0.08em;
}

.page-home .report-item h4 {
  font-size: 17px;
  margin: 8px 0 8px;
  color: var(--home-text);
  font-weight: 700;
  line-height: 1.4;
}

.page-home .report-item p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--home-muted);
  margin: 0;
}

.page-home .reports-more {
  text-align: center;
  margin-top: 36px;
}

/* HOME GUIDE */
.page-home .home-guide {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #0D1424, #0B1020);
}

.page-home .guide-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.page-home .guide-head p {
  color: var(--home-muted);
  line-height: 1.8;
  font-size: 15px;
}

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

.page-home .guide-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  text-decoration: none;
  gap: 8px;
}

.page-home .guide-card .guide-no {
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-green);
  letter-spacing: 0.1em;
}

.page-home .guide-card strong {
  font-family: var(--home-font-display);
  font-size: 18px;
  color: var(--home-text);
}

.page-home .guide-card em {
  font-style: normal;
  font-size: 13px;
  color: var(--home-muted);
}

.page-home .guide-card:hover {
  border-color: rgba(57, 255, 136, 0.5);
}

@keyframes yb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.45); }
}

@media (min-width: 640px) {
  .page-home .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .download-points {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .report-columns {
    columns: 2;
  }

  .page-home .guide-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .hero-framed {
    min-height: 640px;
    padding: 140px 0 72px;
  }

  .page-home .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 72px;
  }

  .page-home .entry-index {
    gap: 16px;
  }

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

  .page-home .download-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
  }

  .page-home .case-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-home .history-timeline {
    gap: 20px;
  }

  .page-home .history-node {
    grid-template-columns: 120px 1fr;
  }

  .page-home .history-timeline::before {
    left: 88px;
  }

  .page-home .report-columns {
    columns: 3;
    column-gap: 24px;
  }

  .page-home .report-col {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home * {
    animation: none !important;
    transition: none !important;
  }
}

.page-home {
  --h: 1rem;
  --home-bg-2: var(--home-bg-deep);
}
