.page-home {
  --home-radius: 4px;
  --home-band: clamp(20px, 4vw, 28px);
  overflow-x: hidden;
}

/* ---------- HERO ---------- */
.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 11vh, 120px) 0 clamp(28px, 5vh, 48px);
  border-bottom: var(--hair-soft);
  background: var(--ink);
}

.page-home .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  opacity: 0.24;
  filter: grayscale(0.35) contrast(1.15) brightness(0.8);
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(115% 85% at 10% 25%, rgba(10, 14, 20, 0.35) 0%, rgba(10, 14, 20, 0.92) 60%, var(--ink) 100%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.7) 0%, rgba(10, 14, 20, 0.35) 45%, var(--ink) 100%);
}

.page-home .hero__inner {
  position: relative;
  max-width: 960px;
}

.page-home .hero__kicker {
  margin: 0 0 clamp(18px, 3vh, 30px);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-home .hero__sep {
  display: inline-block;
  margin: 0 0.7em;
  color: var(--line);
}

.page-home .hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 8.4vw, 6.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

.page-home .hero__title-accent {
  display: inline-block;
  color: var(--brand);
}

.page-home .hero__lead {
  max-width: 46ch;
  margin: clamp(20px, 3.5vh, 32px) 0 0;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.8;
  color: var(--text);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 4.5vh, 40px);
}

.page-home .hero__track {
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  margin: clamp(40px, 7vh, 72px) 0 0;
  padding: 20px 0 18px;
  list-style: none;
  overflow-x: auto;
  border-top: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-home .hero__track::-webkit-scrollbar {
  display: none;
}

.page-home .hero__fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 108px;
}

.page-home .hero__fact-num {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.page-home .hero__fact-label {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- SECTION BASE ---------- */
.page-home .section {
  padding: clamp(56px, 9vh, 104px) 0;
}

.page-home .section__note a,
.page-home .inline-link {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 255, 61, 0.4);
  transition: border-color 200ms var(--ease);
}

.page-home .section__note a:hover,
.page-home .inline-link:hover {
  border-bottom-color: var(--brand);
}

/* ---------- 01 LIVE PANEL ---------- */
.page-home .live {
  background: linear-gradient(180deg, var(--ink) 0%, var(--panel-2) 55%, var(--ink) 100%);
}

.page-home .live__grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.page-home .live__main {
  min-width: 0;
}

.page-home .filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .filterbar__btn {
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background-color 200ms var(--ease);
}

.page-home .filterbar__btn:hover {
  color: var(--text);
  border-color: var(--brand);
}

.page-home .filterbar__btn.is-active {
  color: var(--on-brand);
  background: var(--brand);
  border-color: var(--brand);
}

.page-home .live__body {
  display: grid;
  gap: 20px;
}

.page-home .live__item {
  padding: var(--home-band);
  background: var(--panel);
  border: var(--hair);
  border-radius: var(--home-radius);
  box-shadow: var(--shadow);
  min-width: 0;
}

.page-home .live__body .live__item + .live__item {
  margin-top: 0;
}

.page-home .live__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grid);
}

.page-home .live__item-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.page-home .live__item-note {
  margin: 16px 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 44ch;
}

.page-home .spark-wrap {
  margin: 22px 0 0;
}

.page-home .spark {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.page-home .spark__grid line {
  stroke: var(--grid);
  stroke-width: 1;
}

.page-home .spark__line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.page-home .spark__dot {
  fill: var(--accent);
}

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

.page-home .bars__label {
  fill: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
}

.page-home .bars__value {
  fill: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .bars__track {
  fill: var(--grid);
}

.page-home .bars__fill {
  fill: var(--brand);
}

.page-home .bars__fill--alt {
  fill: var(--teal);
}

.page-home .spark-wrap figcaption {
  margin-top: 10px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.page-home .live__rows {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--grid);
}

.page-home .live__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grid);
}

.page-home .live__row-key {
  font-size: 0.875rem;
  color: var(--muted);
}

.page-home .live__row-val {
  font-size: 0.9375rem;
  color: var(--text);
}

.page-home .live__row-val.num,
.page-home .live__row:hover .live__row-val {
  color: var(--accent);
}

.page-home .live__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.page-home .live__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--home-radius);
  border: var(--hair);
  aspect-ratio: 3 / 4;
  background: var(--panel-2);
}

.page-home .live__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.page-home .live__aside-note {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .live__aside .btn {
  align-self: flex-start;
}

/* ---------- 02 TIMELINE ---------- */
.page-home .timeline {
  padding-top: 0;
  background: var(--ink);
}

.page-home .timeline__banner {
  margin: 0 0 clamp(40px, 6vh, 64px);
  position: relative;
  overflow: hidden;
}

.page-home .timeline__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.4) 0%, rgba(10, 14, 20, 0.85) 70%, var(--ink) 100%);
}

.page-home .timeline__banner img {
  display: block;
  width: 100%;
  height: clamp(180px, 30vw, 340px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.25) contrast(1.1);
}

.page-home .timeline__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--grid);
}

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

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--grid);
}

.page-home .timeline__item:last-child::before {
  background: linear-gradient(180deg, var(--grid) 0%, transparent 100%);
}

.page-home .timeline__node {
  border-bottom: 1px solid var(--grid);
}

.page-home .timeline__node summary {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  transition: color 200ms var(--ease);
}

.page-home .timeline__node summary::-webkit-details-marker {
  display: none;
}

.page-home .timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--line);
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}

.page-home .timeline__node[open] .timeline__dot {
  border-color: var(--brand);
  background: var(--brand);
}

.page-home .timeline__node summary:hover .timeline__dot {
  border-color: var(--brand);
}

.page-home .timeline__stage {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
}

.page-home .timeline__node[open] .timeline__stage {
  color: var(--brand);
}

.page-home .timeline__round {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}

.page-home .timeline__panel {
  padding: 0 0 24px 28px;
}

.page-home .timeline__panel p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- 03 MARKS ---------- */
.page-home .marks-section {
  background: linear-gradient(180deg, var(--ink) 0%, var(--panel-2) 100%);
}

.page-home .marks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.page-home .marks__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  padding: var(--home-band);
  background: var(--panel);
  border: var(--hair);
  border-left: 3px solid var(--brand);
  border-radius: var(--home-radius);
  transition: border-left-color 200ms var(--ease), transform 200ms var(--ease);
}

.page-home .marks__item:hover {
  border-left-color: var(--accent);
  transform: translateX(3px);
}

.page-home .marks__num {
  grid-row: 1 / span 2;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  letter-spacing: -0.02em;
}

.page-home .marks__body {
  min-width: 0;
}

.page-home .marks__title {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.page-home .marks__body p {
  margin: 0;
  max-width: 58ch;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .marks__metric {
  grid-column: 2;
  align-self: end;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ---------- 04 COLUMN ---------- */
.page-home .column-section {
  background: var(--ink);
}

.page-home .column__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--grid);
}

.page-home .column__item {
  padding: clamp(22px, 3.5vw, 30px) 0;
  border-bottom: 1px solid var(--grid);
  transition: background-color 200ms var(--ease);
}

.page-home .column__item:hover {
  background: rgba(17, 26, 40, 0.6);
}

.page-home .column__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .column__date {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-home .column__title {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  max-width: 34ch;
}

.page-home .column__item:hover .column__title {
  color: var(--brand);
}

.page-home .column__text {
  margin: 0;
  max-width: 60ch;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 05 ACCESS ---------- */
.page-home .access {
  position: relative;
  overflow: hidden;
  background: var(--panel-2);
  border-top: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
}

.page-home .access__bg {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: min(760px, 78%);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

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

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

.page-home .access__grid {
  display: grid;
  gap: 16px;
}

.page-home .access__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--home-band);
  background: rgba(10, 14, 20, 0.72);
  border: var(--hair);
  border-radius: var(--home-radius);
  backdrop-filter: blur(2px);
}

.page-home .access__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand);
}

.page-home .access__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .access__contact {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text);
  word-break: break-all;
}

.page-home .access__item .btn,
.page-home .access__item .copy-btn {
  align-self: flex-start;
}

.page-home .access__foot {
  margin: clamp(24px, 4vh, 36px) 0 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- 06 SCOPE ---------- */
.page-home .scope {
  background: var(--ink);
}

.page-home .scope__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--grid);
  border: 1px solid var(--grid);
  border-radius: var(--home-radius);
  overflow: hidden;
}

.page-home .scope__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--panel);
}

.page-home .scope__num {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.page-home .scope__label {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .scope__foot {
  margin: clamp(22px, 3.5vh, 32px) 0 0;
  max-width: 62ch;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--muted);
}

.page-home .scope__icp {
  margin: 14px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--line);
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 640px) {
  .page-home .scope__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .page-home .live__grid {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

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

  .page-home .marks__item {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 6px 28px;
  }

  .page-home .marks__metric {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    text-align: right;
  }

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

@media (min-width: 1100px) {
  .page-home .live__aside {
    position: sticky;
    top: 96px;
  }

  .page-home .hero__inner {
    padding-right: 8%;
  }
}

@media (max-width: 560px) {
  .page-home .timeline__node summary {
    grid-template-columns: 12px 1fr;
    row-gap: 6px;
  }

  .page-home .timeline__round {
    grid-column: 2;
  }

  .page-home .timeline__panel {
    padding-left: 28px;
  }

  .page-home .marks__num {
    grid-row: auto;
    font-size: 1.25rem;
  }

  .page-home .marks__metric {
    grid-column: 2;
  }

  .page-home .hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .marks__item,
  .page-home .column__item,
  .page-home .filterbar__btn,
  .page-home .timeline__dot {
    transition: none;
  }

  .page-home .marks__item:hover {
    transform: none;
  }
}
