.page-home {
  --home-grid-bg: linear-gradient(rgba(11, 37, 69, 0.05) 1px, transparent 1px),
                  linear-gradient(90deg, rgba(11, 37, 69, 0.05) 1px, transparent 1px);
  background: var(--c-paper);
  color: var(--c-ink);
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-muted);
}
.page-home .breadcrumb a {
  color: var(--c-steel);
  text-decoration: none;
  border-bottom: 2px solid var(--c-volt);
}
.page-home .breadcrumb a:hover {
  color: var(--c-ink);
}

.page-home .home-hero {
  padding: 32px 0 48px;
  background-image: var(--home-grid-bg);
  background-size: 32px 32px;
  background-position: -1px -1px;
}
.page-home .home-hero__grid {
  display: grid;
  gap: var(--space-5);
}
.page-home .home-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}
.page-home .home-hero__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-steel);
  border-left: 4px solid var(--c-volt);
  padding-left: 12px;
  text-transform: uppercase;
}
.page-home .home-hero__title {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 12em;
}
.page-home .home-hero__lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--c-steel);
  border-left: 4px solid var(--c-line);
  padding-left: 16px;
  max-width: 44em;
}
.page-home .home-hero__update-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.page-home .home-hero__update-tag {
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  transform: skewX(-6deg);
  letter-spacing: 0.04em;
}
.page-home .home-hero__update-code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-white);
  border: 2px solid var(--c-ink);
  padding: 4px 10px;
  box-shadow: 3px 3px 0 var(--c-ink);
}
.page-home .home-hero__update-meta {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-steel);
  max-width: 40em;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-width: 44em;
}
.page-home .home-hero__points li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-steel);
}
.page-home .home-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 3px;
  background: var(--c-volt);
  transform: skewX(-20deg);
}
.page-home .home-hero__points a {
  color: var(--c-ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-home .home-board {
  background: var(--c-navy);
  color: var(--c-white);
  border: var(--border-thick);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-home .home-board__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--c-volt);
  color: var(--c-ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-bottom: var(--border-thick);
}
.page-home .home-board__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: var(--border-thick);
}
.page-home .home-board__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border-thick);
}
.page-home .home-board__stat {
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.page-home .home-board__stat:last-child {
  border-right: none;
}
.page-home .home-board__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  color: var(--c-volt);
  line-height: 1.1;
}
.page-home .home-board__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.06em;
}
.page-home .home-board__path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: var(--c-white);
  color: var(--c-ink);
  margin-top: auto;
}
.page-home .home-board__path code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  background: var(--c-paper);
  border: 2px dashed var(--c-line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-ticker {
  background: var(--c-ink);
  color: var(--c-white);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  overflow: hidden;
}
.page-home .home-ticker__inner {
  display: flex;
  align-items: stretch;
}
.page-home .home-ticker__label {
  flex: none;
  display: flex;
  align-items: center;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}
.page-home .home-ticker__track {
  display: flex;
  width: max-content;
  animation: pageHomeTicker 26s linear infinite;
}
.page-home .home-ticker:hover .home-ticker__track,
.page-home .home-ticker:focus-within .home-ticker__track {
  animation-play-state: paused;
}
.page-home .home-ticker__group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 16px;
  white-space: nowrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}
.page-home .home-ticker__group span::before {
  content: "→";
  color: var(--c-volt);
  margin-right: 6px;
}

@keyframes pageHomeTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.page-home .home-band {
  position: relative;
  padding: 48px 0;
  border-bottom: var(--border-thick);
}
.page-home .home-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 8px;
  background: var(--c-navy);
  transform: skewX(-20deg) translateX(-18px);
}
.page-home .home-band--resource::before {
  background: var(--c-orange);
}
.page-home .home-band--compare {
  background: var(--c-navy);
  color: var(--c-white);
}
.page-home .home-band--compare::before {
  background: var(--c-volt);
}
.page-home .home-band--tablet {
  background: var(--c-white);
}
.page-home .home-band--tablet::before {
  background: var(--c-volt);
}

.page-home .home-band__grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
.page-home .home-band__media img {
  display: block;
  width: 100%;
  height: auto;
  border: var(--border-thick);
  box-shadow: var(--shadow-card);
}
.page-home .home-band__media--overlay {
  position: relative;
}
.page-home .home-band__media--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 255, 0, 0.22), transparent 55%);
  pointer-events: none;
}
.page-home .home-band__media--overlay img {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.28);
  transform: rotate(0.8deg);
}
.page-home .home-band__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}
.page-home .section-head__index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-steel);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .section-head__index--light {
  color: var(--c-volt);
}
.page-home .home-band__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.page-home .home-band__title--light {
  color: var(--c-white);
}
.page-home .home-band__desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-steel);
  max-width: 46em;
}
.page-home .home-band__desc--light {
  color: rgba(255, 255, 255, 0.75);
}

.page-home .home-band__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-band__facts li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-steel);
}
.page-home .home-band__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 3px;
  background: var(--c-orange);
  transform: skewX(-20deg);
}

.page-home .home-compare__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-compare__tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-volt);
  border: 2px solid var(--c-ink);
  padding: 4px 10px;
  box-shadow: 2px 2px 0 var(--c-ink);
}

.page-home .home-benefits {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 480px;
}
.page-home .home-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--c-paper);
  border: var(--border-thin);
  font-weight: 700;
  font-size: 15px;
}
.page-home .home-benefits__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--c-ink);
  background: var(--c-volt);
  border: 2px solid var(--c-ink);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
}

.page-home .home-snapshots {
  padding: 48px 0 8px;
}
.page-home .home-snapshots__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.page-home .home-snapshots__title {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
}
.page-home .home-snapshots__grid {
  display: grid;
  gap: var(--space-4);
}
.page-home .home-snapshots__item {
  display: block;
  padding: var(--space-4);
  background: var(--c-white);
  border: var(--border-thick);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.page-home .home-snapshots__item:hover,
.page-home .home-snapshots__item:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.page-home .home-snapshots__idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--c-orange);
  display: inline-block;
  margin-bottom: 8px;
}
.page-home .home-snapshots__name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.page-home .home-snapshots__summary {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-steel);
}

.page-home .home-feedback {
  background: var(--c-volt);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  margin-top: 48px;
  padding: 48px 0;
}
.page-home .home-feedback__inner {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.page-home .home-feedback .section-head__index {
  color: var(--c-ink);
}
.page-home .home-feedback__title {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
}
.page-home .home-feedback__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink);
  max-width: 42em;
}
.page-home .home-feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 56px 0 64px;
  }
  .page-home .home-hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--space-6);
  }
  .page-home .home-board__img {
    height: 240px;
  }
  .page-home .home-band {
    padding: 72px 0;
  }
  .page-home .home-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
  .page-home .home-snapshots__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .page-home .home-snapshots__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-snapshots__summary {
    display: none;
  }
  .page-home .home-snapshots__item:hover .home-snapshots__summary,
  .page-home .home-snapshots__item:focus-visible .home-snapshots__summary {
    display: block;
  }
  .page-home .home-feedback {
    margin-top: 64px;
    padding: 64px 0;
  }
  .page-home .home-feedback__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
