.page-home {
  --home-gold: #FFD700;
  --home-red: #E63946;
  --home-silver: #C0C0C0;
  --home-dark: #0B0B0D;
  --home-panel: #14141A;
  --home-surface: #1E1E28;
  --home-line: #2B2D42;
  --home-grad: linear-gradient(135deg, #FFD700 0%, #E63946 100%);
  position: relative;
  overflow: clip;
}

.page-home .container {
  max-width: var(--container-w, 1240px);
  margin-inline: auto;
  padding-inline: var(--gutter, 20px);
  box-sizing: border-box;
  width: 100%;
}

/* ===== Hero ===== */
.page-home .hero-panel {
  position: relative;
  padding: clamp(40px, 8vw, 96px) 0 clamp(32px, 6vw, 72px);
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(230, 57, 70, 0.18) 0%, rgba(230, 57, 70, 0) 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0) 60%),
    linear-gradient(160deg, #0B0B0D 30%, #16161e 100%);
  border-bottom: 1px solid var(--home-line);
  z-index: 1;
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}

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

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-silver);
  margin-bottom: 20px;
}

.page-home .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--home-grad);
}

.page-home .hero-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--text-primary, #fff);
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 400;
}

.page-home .hero-desc {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  color: var(--home-gold);
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.page-home .hero-sub-desc {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary, #b0b0b0);
  max-width: 62ch;
  margin: 0 0 28px;
}

.page-home .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-full, 999px);
  border: 1px solid transparent;
  transition: all var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  cursor: pointer;
}

.page-home .btn-primary {
  background: var(--home-grad);
  color: #0B0B0D;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.25);
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.35);
}

.page-home .btn-outline {
  background: transparent;
  border-color: var(--home-line);
  color: var(--text-primary, #fff);
}

.page-home .btn-outline:hover {
  border-color: var(--home-gold);
  color: var(--home-gold);
  transform: translateY(-2px);
}

.page-home .hero-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md, 12px);
  padding: 0;
}

.page-home .data-item {
  background: rgba(20, 20, 26, 0.9);
  padding: 20px 18px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-home .data-item:first-child {
  border-radius: var(--radius-md, 12px) 0 0 0;
}

.page-home .data-item:nth-child(2) {
  border-radius: 0 var(--radius-md, 12px) 0 0;
}

.page-home .data-item:nth-child(3) {
  border-radius: 0 0 0 var(--radius-md, 12px);
}

.page-home .data-item:last-child {
  border-radius: 0 0 var(--radius-md, 12px) 0;
}

.page-home .data-value {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  color: var(--home-gold);
  line-height: 1;
  font-weight: 400;
}

.page-home .data-value .sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--home-silver);
  margin-left: 2px;
}

.page-home .data-label {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.72rem;
  color: var(--text-secondary, #b0b0b0);
  letter-spacing: 0.04em;
}

/* Hero visual */
.page-home .hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-home .flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.page-home .flow-path {
  fill: none;
  stroke-linecap: round;
  opacity: 0.82;
}

.page-home .flow-path-a {
  animation: dashFlow 4.2s ease-in-out infinite alternate;
}

.page-home .flow-path-b {
  animation: dashFlow 3.1s ease-in-out infinite alternate-reverse;
}

.page-home .flow-path-c {
  animation: dashFlow 5s ease-in-out infinite alternate;
}

.page-home .flow-node-gold {
  animation: nodePulse 2.2s ease-in-out infinite;
}

.page-home .flow-node-red {
  animation: nodePulse 1.7s ease-in-out infinite 0.4s;
}

.page-home .flow-node-silver {
  animation: nodePulse 2.8s ease-in-out infinite 0.8s;
}

@keyframes dashFlow {
  0% {
    stroke-dashoffset: 24;
    opacity: 0.5;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.95;
  }
}

@keyframes nodePulse {
  0%, 100% {
    r: 3;
    opacity: 0.6;
  }
  50% {
    r: 7;
    opacity: 1;
  }
}

.page-home .hero-score-board {
  position: relative;
  z-index: 2;
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg, 20px);
  padding: 28px 36px;
  backdrop-filter: blur(8px);
  text-align: center;
  box-shadow: var(--shadow-float, 0 16px 56px rgba(0, 0, 0, 0.7));
}

.page-home .score-label {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--home-silver);
  margin-bottom: 12px;
}

.page-home .score-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.page-home .score-num {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1;
  background: var(--home-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 400;
}

.page-home .score-num-red {
  background: linear-gradient(135deg, #E63946, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .score-divider {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 2.4rem;
  color: var(--home-line);
}

.page-home .score-foot {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.75rem;
  color: var(--text-secondary, #b0b0b0);
}

.page-home .hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(230, 57, 70, 0.06) 40%, transparent 70%);
  filter: blur(24px);
  z-index: -1;
}

/* ===== Section panels ===== */
.page-home .section-panel {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
  scroll-margin-top: calc(var(--header-h, 72px) + 28px);
}

.page-home .panel-head {
  margin-bottom: clamp(28px, 5vw, 48px);
  max-width: 720px;
}

.page-home .kicker {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-home .kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--home-grad);
  display: inline-block;
}

.page-home .panel-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--text-primary, #fff);
  margin: 0 0 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .panel-desc {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary, #b0b0b0);
  margin: 0;
}

/* ===== Chapter preview ===== */
.page-home .chapter-preview {
  background: var(--home-panel);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.page-home .chapter-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    transparent 0px,
    transparent 60px,
    rgba(255, 215, 0, 0.02) 60px,
    rgba(255, 215, 0, 0.02) 61px,
    transparent 61px,
    transparent 120px
  );
  pointer-events: none;
}

.page-home .preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: preview-counter;
}

.page-home .preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md, 12px);
  padding: 28px 24px;
  text-decoration: none;
  transition: transform var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              border-color var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  overflow: hidden;
  color: var(--text-primary, #fff);
}

.page-home .preview-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -20px;
  width: 120px;
  height: 80px;
  background: var(--home-grad);
  opacity: 0.12;
  transform: rotate(35deg);
  transition: opacity var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .preview-card:hover {
  transform: translateY(-4px) skewX(-1deg);
  border-color: var(--home-gold);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.page-home .preview-card:hover::after {
  opacity: 0.28;
}

.page-home .preview-index {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 0.9rem;
  color: var(--home-gold);
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.page-home .preview-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 1.4rem;
  color: var(--text-primary, #fff);
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}

.page-home .preview-text {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary, #b0b0b0);
  margin: 0;
}

.page-home .preview-arrow {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--home-gold);
  transition: transform var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .preview-card:hover .preview-arrow {
  transform: translateX(6px);
}

/* ===== Speed line ===== */
.page-home .speed-line {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 var(--gutter, 20px);
  background: var(--home-dark);
  position: relative;
  z-index: 2;
}

.page-home .speed-line span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--home-grad);
  opacity: 0.5;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  animation: speedSlash 3.4s ease-in-out infinite alternate;
}

.page-home .speed-line span:nth-child(1) {
  width: 8%;
}

.page-home .speed-line span:nth-child(2) {
  width: 14%;
  animation-delay: 0.7s;
}

.page-home .speed-line span:nth-child(3) {
  width: 76%;
  animation-delay: 1.2s;
  opacity: 0.24;
}

.page-home .speed-line-reverse span {
  clip-path: polygon(100% 0, 100% 100%, 8% 100%, 0 0);
}

.page-home .speed-line-reverse span:nth-child(1) {
  width: 8%;
}

.page-home .speed-line-reverse span:nth-child(2) {
  width: 12%;
  animation-delay: 0.5s;
}

.page-home .speed-line-reverse span:nth-child(3) {
  width: 76%;
  animation-delay: 1s;
}

@keyframes speedSlash {
  0% {
    transform: translateX(0);
    opacity: 0.3;
  }
  100% {
    transform: translateX(14px);
    opacity: 0.65;
  }
}

/* ===== Update panel ===== */
.page-home .update-panel {
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
    var(--home-dark);
}

.page-home .update-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.page-home .update-content {
  min-width: 0;
}

.page-home .timeline-list {
  position: relative;
  padding-left: 28px;
  margin: 32px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--home-gold) 0%, var(--home-red) 100%);
  opacity: 0.5;
}

.page-home .timeline-item {
  position: relative;
}

.page-home .timeline-dot {
  position: absolute;
  left: -27px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-dark);
  border: 2px solid var(--home-gold);
  z-index: 1;
}

.page-home .timeline-item:nth-child(2) .timeline-dot {
  border-color: var(--home-red);
}

.page-home .timeline-item:nth-child(3) .timeline-dot {
  border-color: var(--home-silver);
}

.page-home .timeline-card {
  background: var(--home-panel);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md, 12px);
  padding: 20px 22px;
  transition: border-color var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .timeline-card:hover {
  border-color: var(--home-line);
  border-left-color: var(--home-gold);
}

.page-home .timeline-version {
  display: inline-block;
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--home-gold);
  background: rgba(255, 215, 0, 0.08);
  border-radius: var(--radius-full, 999px);
  padding: 4px 12px;
  margin-bottom: 10px;
}

.page-home .timeline-item:nth-child(2) .timeline-version {
  color: var(--home-red);
  background: rgba(230, 57, 70, 0.08);
}

.page-home .timeline-item:nth-child(3) .timeline-version {
  color: var(--home-silver);
  background: rgba(192, 192, 192, 0.08);
}

.page-home .timeline-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 1.2rem;
  color: var(--text-primary, #fff);
  margin: 0 0 8px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .timeline-text {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary, #b0b0b0);
  margin: 0;
}

.page-home .update-cta {
  display: flex;
  justify-content: flex-start;
}

.page-home .update-visual {
  min-width: 0;
}

.page-home .img-container {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  border: 1px solid var(--home-line);
  aspect-ratio: attr(data-ratio);
}

.page-home .img-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .img-container:hover img {
  transform: scale(1.04);
}

/* ===== Report panel ===== */
.page-home .report-panel {
  background:
    linear-gradient(115deg, transparent 40%, rgba(230, 57, 70, 0.05) 60%, transparent 80%),
    var(--home-panel);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}

.page-home .report-head {
  max-width: unset;
}

.page-home .report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.page-home .report-main {
  min-width: 0;
}

.page-home .report-img {
  margin-bottom: 20px;
}

.page-home .report-quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(11, 11, 13, 0.6);
  border-left: 2px solid var(--home-gold);
  border-radius: 0 var(--radius-sm, 8px) var(--radius-sm, 8px) 0;
  padding: 20px 24px;
}

.page-home .report-quote svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.page-home .report-quote-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 1.1rem;
  color: var(--home-gold);
  margin: 0 0 8px;
  font-weight: 400;
}

.page-home .report-quote-text {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--text-secondary, #b0b0b0);
  margin: 0;
}

.page-home .report-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.page-home .report-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(20, 20, 26, 0.75);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm, 8px);
  padding: 16px 20px;
  transition: transform var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              border-color var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .report-item:hover {
  border-color: var(--home-gold);
  transform: translateX(4px);
}

.page-home .report-league {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 0.9rem;
  color: var(--home-gold);
  background: rgba(255, 215, 0, 0.08);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
  font-weight: 400;
}

.page-home .report-match {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.86rem;
  color: var(--text-primary, #fff);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.page-home .report-status {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.7rem;
  color: var(--home-silver);
  white-space: nowrap;
  flex-shrink: 0;
}

.page-home .report-more {
  margin-top: 12px;
  align-self: flex-start;
}

/* ===== Consensus panel ===== */
.page-home .consensus-panel {
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
    var(--home-dark);
}

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

.page-home .consensus-card {
  border-radius: var(--radius-lg, 20px);
  border: 1px solid var(--home-line);
  transition: transform var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .consensus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft, 0 8px 32px rgba(0, 0, 0, 0.45));
}

.page-home .consensus-card-quote {
  background: var(--home-panel);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.page-home .consensus-card-quote::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  background: var(--home-grad);
  opacity: 0.08;
  border-radius: 50%;
}

.page-home .consensus-num {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--home-gold);
  margin: 0;
  font-weight: 400;
}

.page-home .consensus-num .sup {
  font-size: 0.45em;
  color: var(--home-silver);
  vertical-align: super;
  margin-left: 2px;
}

.page-home .consensus-label {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.82rem;
  color: var(--text-secondary, #b0b0b0);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-home .consensus-text {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-secondary, #b0b0b0);
  margin: 8px 0 0;
  border-top: 1px solid var(--home-line);
  padding-top: 14px;
}

.page-home .consensus-card-viz {
  background: transparent;
  padding: 0;
  border: none;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  min-height: 260px;
}

.page-home .consensus-card-viz .img-container {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg, 20px);
  border: 1px solid var(--home-line);
}

.page-home .consensus-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  align-items: flex-start;
}

.page-home .consensus-foot-note {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.78rem;
  color: var(--text-secondary, #b0b0b0);
  margin: 0;
  line-height: 1.6;
}

/* ===== Service panel ===== */
.page-home .service-panel {
  background: var(--home-panel);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
  padding-top: clamp(56px, 8vw, 104px);
}

.page-home .service-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.page-home .service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.page-home .service-item {
  display: flex;
  gap: 18px;
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md, 12px);
  padding: 22px;
  transition: border-color var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .service-item:hover {
  border-color: var(--home-gold);
}

.page-home .service-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-home .service-icon-red {
  background: rgba(230, 57, 70, 0.14);
}

.page-home .service-icon-silver {
  background: rgba(192, 192, 192, 0.12);
}

.page-home .service-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.18);
}

.page-home .service-icon-red::after {
  background: var(--home-red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18);
}

.page-home .service-icon-silver::after {
  background: var(--home-silver);
  box-shadow: 0 0 0 4px rgba(192, 192, 192, 0.16);
}

.page-home .service-info {
  min-width: 0;
}

.page-home .service-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 1.05rem;
  color: var(--text-primary, #fff);
  margin: 0 0 6px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .service-text {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary, #b0b0b0);
  margin: 0 0 10px;
}

.page-home .card-link {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.78rem;
  color: var(--home-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast, 200ms) var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.page-home .card-link:hover {
  gap: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .service-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .service-visual {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .service-bg.img-container {
  min-height: 320px;
}

.page-home .service-panel-note {
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-md, 12px);
  padding: 22px 24px;
}

.page-home .service-note-title {
  font-family: var(--font-heading, "Anton", "Impact", sans-serif);
  font-size: 1rem;
  color: var(--home-gold);
  margin: 0 0 8px;
  font-weight: 400;
  text-transform: uppercase;
}

.page-home .service-note-text {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.9rem;
  color: var(--text-primary, #fff);
  margin: 0 0 6px;
}

.page-home .service-note-sub {
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.78rem;
  color: var(--text-secondary, #b0b0b0);
  margin: 0;
  word-break: break-all;
}

/* ===== Chapter dock ===== */
.page-home .chapter-dock {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 98;
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-full, 999px);
  padding: 18px 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft, 0 8px 32px rgba(0, 0, 0, 0.45));
}

.page-home .chapter-dock-title {
  writing-mode: vertical-rl;
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--home-silver);
  margin: 0 auto 6px;
  opacity: 0.7;
  white-space: nowrap;
}

.page-home .chapter-dock-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.page-home .chapter-dock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-line);
  text-decoration: none;
  position: relative;
  transition: background 0.3s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              transform 0.3s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  font-size: 0;
}

.page-home .chapter-dock-link::after {
  content: attr(data-chapter-label);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-family: var(--font-body, "Roboto Mono", monospace);
  font-size: 0.7rem;
  color: var(--text-primary, #fff);
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: 4px;
  padding: 4px 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.page-home .chapter-dock-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.page-home .chapter-dock-link:hover,
.page-home .chapter-dock-link[data-active="true"] {
  background: var(--home-gold);
  transform: scale(1.3);
}

/* ===== Mobile responsive ===== */
@media (min-width: 640px) {
  .page-home .hero-strip {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .page-home .consensus-card-viz {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
  }

  .page-home .service-foot {
    flex-direction: row;
  }

  .page-home .consensus-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
}

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

  .page-home .hero-visual {
    min-height: 440px;
  }

  .page-home .update-inner {
    grid-template-columns: 1fr 0.9fr;
  }

  .page-home .report-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .page-home .consensus-grid {
    grid-template-columns: 0.9fr 0.9fr 1.2fr;
  }

  .page-home .consensus-card-viz {
    grid-column: auto;
    grid-row: span 2;
    aspect-ratio: unset;
    min-height: 100%;
    height: 100%;
  }

  .page-home .service-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-home .service-bg.img-container {
    min-height: 420px;
  }

  .page-home .chapter-dock {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .page-home .chapter-dock {
    right: clamp(20px, 4vw, 64px);
  }
}
