.page-home {
  background: var(--warm-gray-100);
  color: var(--ink-900);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: clip;
}

.page-home > section {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
  box-sizing: border-box;
}

.page-home .home-cover {
  padding-block: var(--space-4) 0;
  border-bottom: var(--border-w) solid var(--ink-900);
  margin-bottom: var(--space-5);
}

.page-home .home-cover-topbar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
  padding-block: 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.page-home .home-cover-edition {
  color: var(--spring-600);
  font-weight: 800;
}

.page-home .home-cover-datestamp {
  color: var(--ink-600);
}

.page-home .home-cover-mag {
  display: grid;
  gap: var(--space-4);
  padding-block: var(--space-2) var(--space-5);
}

.page-home .home-cover-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.page-home .home-cover-brand-link {
  text-decoration: none;
  color: var(--ink-900);
}

.page-home .home-cover-brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1.25;
}

.page-home .home-cover-brand-sub {
  display: block;
  color: var(--ink-600);
  font-size: 0.875rem;
  margin-top: var(--space-1);
}

.page-home .home-cover-brand-note {
  align-self: flex-start;
  border: var(--border-w) solid var(--ink-900);
  padding: 0.3rem 0.75rem;
  background: var(--autumn-500);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: var(--space-2);
}

.page-home .home-cover-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-cover-kicker {
  margin: 0 0 var(--space-1);
  color: var(--summer-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
}

.page-home .home-cover-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.08;
}

.page-home .home-cover-version-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  border-block: var(--border-w) solid var(--ink-900);
  padding-block: var(--space-3);
  margin-bottom: var(--space-3);
  width: 100%;
}

.page-home .home-cover-version-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--ink-600);
}

.page-home .home-cover-version-num {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: clamp(4.5rem, 14vw, 8.5rem);
  line-height: 0.9;
  background: linear-gradient(135deg, var(--spring-600), var(--summer-500) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-cover-version-meta {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--ink-600);
}

.page-home .home-cover-lead {
  max-width: 38em;
  margin: 0 0 var(--space-3);
  color: var(--ink-600);
  font-size: 1rem;
  line-height: 1.8;
}

.page-home .home-cover-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.page-home .home-copy-btn {
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.page-home .home-copy-btn:hover {
  background: var(--spring-50);
}

.page-home .home-cover-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: var(--border-w) solid var(--ink-900);
  background: var(--winter-100);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
}

.page-home .home-cover-strip span {
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  border-right: 1px solid var(--winter-400);
  border-bottom: 1px solid var(--winter-400);
}

.page-home .home-cover-strip span:nth-child(2n) {
  border-right: 0;
}

.page-home .home-cover-strip span:nth-child(n+3) {
  border-bottom: 0;
}

.page-home .home-carousel-section,
.page-home .home-announce,
.page-home .home-chapter {
  padding-block: var(--space-5);
}

.page-home .home-chapter-head {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.page-home .home-chapter-intro {
  margin: var(--space-1) 0 0;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 48em;
}

.page-home .home-announce .chapter-number {
  color: var(--spring-600);
}

.page-home .home-chapter-price .chapter-number {
  color: var(--autumn-700);
}

.page-home .home-chapter-reviews .chapter-number {
  color: var(--summer-500);
}

.page-home .home-chapter-timer .chapter-number {
  color: var(--winter-400);
}

.page-home .home-chapter-trust .chapter-number {
  color: var(--spring-600);
}

.page-home .home-carousel-heading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.page-home .home-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
  background: var(--winter-400);
}

.page-home .home-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: homeCarouselCycle 16s infinite;
}

.page-home .home-carousel-slide:nth-child(1) {
  animation-name: homeCarouselSlide1;
}

.page-home .home-carousel-slide:nth-child(2) {
  animation-name: homeCarouselSlide2;
}

.page-home .home-carousel-slide:nth-child(3) {
  animation-name: homeCarouselSlide3;
}

.page-home .home-carousel-slide:nth-child(4) {
  animation-name: homeCarouselSlide4;
}

.page-home .home-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-carousel-caption {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(23, 33, 30, 0.72);
  border-radius: var(--radius);
  color: #fff;
}

.page-home .home-carousel-caption h3 {
  margin: 0 0 var(--space-1);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.page-home .home-carousel-tag {
  display: inline-block;
  margin-bottom: var(--space-1);
  color: var(--autumn-500);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-home .home-carousel-link {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-carousel-note {
  margin-top: var(--space-2);
  color: var(--ink-600);
  font-size: 0.8125rem;
}

.page-home .home-carousel:hover .home-carousel-slide,
.page-home .home-carousel:focus-within .home-carousel-slide {
  animation-play-state: paused;
}

.page-home .home-carousel-slide:hover,
.page-home .home-carousel-slide:focus-within {
  opacity: 1;
  z-index: 6;
  animation: none;
}

.page-home .home-announce-grid {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-announce-card {
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
}

.page-home .home-announce-card:nth-child(1) {
  background: var(--spring-50);
}

.page-home .home-announce-card:nth-child(2) {
  background: var(--summer-50);
}

.page-home .home-announce-card:nth-child(3) {
  background: var(--winter-100);
}

.page-home .home-announce-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 var(--space-1);
}

.page-home .home-announce-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.page-home .home-announce-foot {
  margin-top: var(--space-3);
  color: var(--ink-600);
  font-size: 0.8125rem;
}

.page-home .home-price-list {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-price-card {
  position: relative;
  overflow: hidden;
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  background: #fff;
  padding: var(--space-4);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
  transition: transform 0.18s ease;
}

.page-home .home-price-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 6px;
  background: var(--autumn-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-home .home-price-card:hover::after {
  transform: scaleX(1);
}

.page-home .home-price-card-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.page-home .home-price-season {
  border: var(--border-w) solid var(--ink-900);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--spring-50);
}

.page-home .home-price-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
}

.page-home .home-price-amount {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.page-home .home-price-min,
.page-home .home-price-max {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--autumn-700);
  font-variant-numeric: tabular-nums;
}

.page-home .home-price-sep {
  color: var(--ink-600);
  font-size: 0.875rem;
}

.page-home .home-price-track {
  height: 12px;
  border: 1px solid var(--ink-900);
  border-radius: 999px;
  background: var(--winter-100);
  overflow: hidden;
}

.page-home .home-price-bar {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: 999px;
  background: var(--autumn-500);
}

.page-home .home-price-city {
  color: var(--ink-600);
  font-size: 0.8125rem;
  margin: var(--space-2) 0 0;
}

.page-home .home-price-disclaimer {
  margin-top: var(--space-3);
  font-size: 0.8125rem;
  color: var(--ink-600);
}

.page-home .home-data-panel {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
  text-align: center;
}

.page-home .home-data-item:nth-child(1) {
  background: var(--spring-50);
}

.page-home .home-data-item:nth-child(2) {
  background: var(--summer-50);
}

.page-home .home-data-item:nth-child(3) {
  background: var(--winter-100);
}

.page-home .home-ring {
  width: 84px;
  height: auto;
}

.page-home .home-ring-track,
.page-home .home-ring-fill {
  fill: none;
  stroke-width: 10;
}

.page-home .home-ring-track {
  stroke: var(--winter-400);
}

.page-home .home-ring-fill {
  stroke: var(--spring-600);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}

.page-home .home-data-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--autumn-700);
  font-variant-numeric: tabular-nums;
}

.page-home .home-data-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-600);
}

.page-home .home-reviews-note {
  margin-top: var(--space-3);
  font-size: 0.875rem;
  color: var(--ink-600);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.page-home .home-reviews-note a {
  color: var(--summer-500);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .home-timer-layout {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-timer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  background: var(--winter-100);
  padding: var(--space-5) var(--space-4);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
}

.page-home .home-timer-svg {
  width: 180px;
  height: auto;
  display: block;
}

.page-home .home-timer-track,
.page-home .home-timer-progress {
  fill: none;
  stroke-width: 8;
}

.page-home .home-timer-track {
  stroke: var(--winter-400);
}

.page-home .home-timer-progress {
  stroke: var(--autumn-500);
  stroke-linecap: round;
  stroke-dasharray: 314 314;
  stroke-dashoffset: 314;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: homeTimerFill 30s linear infinite;
}

.page-home .home-timer-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.page-home .home-timer-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--autumn-700);
  font-variant-numeric: tabular-nums;
}

.page-home .home-timer-unit {
  display: block;
  color: var(--ink-600);
  font-family: var(--font-display);
  font-size: 0.875rem;
}

.page-home .home-timer-caption {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  color: var(--ink-600);
  font-size: 0.8125rem;
}

.page-home .home-timer-steps {
  margin: 0;
  padding-left: 1.4rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.9;
}

.page-home .home-timer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.page-home .home-timer-hours {
  margin-top: var(--space-3);
  color: var(--ink-600);
  font-size: 0.875rem;
}

.page-home .home-trust-grid {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-trust-card {
  border: var(--border-w) solid var(--ink-900);
  border-radius: var(--radius);
  background: #fff;
  padding: var(--space-4);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink-900);
}

.page-home .home-trust-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 var(--space-2);
}

.page-home .home-trust-card p {
  margin: 0 0 var(--space-3);
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 3px solid var(--summer-500);
  outline-offset: 3px;
}

@keyframes homeCarouselCycle {
  0%, 100% {
    opacity: 0;
  }
}

@keyframes homeCarouselSlide1 {
  0%, 22% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}

@keyframes homeCarouselSlide2 {
  0%, 24% {
    opacity: 0;
  }
  25%, 47% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes homeCarouselSlide3 {
  0%, 49% {
    opacity: 0;
  }
  50%, 72% {
    opacity: 1;
  }
  75%, 100% {
    opacity: 0;
  }
}

@keyframes homeCarouselSlide4 {
  0%, 74% {
    opacity: 0;
  }
  75%, 97% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes homeTimerFill {
  to {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 720px) {
  .page-home .home-cover-topbar {
    font-size: 0.8125rem;
  }

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

  .page-home .home-cover-strip span,
  .page-home .home-cover-strip span:nth-child(2n) {
    border-right: 1px solid var(--winter-400);
    border-bottom: 0;
  }

  .page-home .home-cover-strip span:nth-child(4n) {
    border-right: 0;
  }

  .page-home .home-carousel {
    aspect-ratio: 16 / 9;
  }

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

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

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

  .page-home .home-timer-layout {
    grid-template-columns: minmax(200px, 260px) 1fr;
    align-items: center;
  }

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

@media (min-width: 1080px) {
  .page-home .home-cover-mag {
    grid-template-columns: 230px 1fr;
    gap: var(--space-5);
    align-items: stretch;
  }

  .page-home .home-cover-brand {
    border-right: var(--border-w) solid var(--ink-900);
    padding-right: var(--space-4);
  }

  .page-home .home-cover-hero {
    padding-left: var(--space-1);
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .home-carousel-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    animation: none;
  }

  .page-home .home-carousel {
    aspect-ratio: auto;
    height: auto;
    box-shadow: none;
  }

  .page-home .home-carousel-img {
    position: relative;
    height: auto;
    min-height: 220px;
  }

  .page-home .home-carousel-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -90px;
  }

  .page-home .home-timer-progress {
    animation: none;
  }

  .page-home .home-price-card {
    transition: none;
  }
}
