.home-hero {
  display: grid;
  min-height: clamp(30rem, 60svh, 39rem);
  place-items: center;
  border-bottom: 1px solid var(--color-line);
}

.home-hero__inner {
  max-width: 54rem;
  padding-block: clamp(4.5rem, 8vw, 6.5rem);
  text-align: center;
}

.home-hero h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(3rem, 5.4vw, 4.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.home-hero__english {
  max-width: none;
  margin: 0 0 var(--space-6);
  color: var(--color-text-soft);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.home-hero__intro {
  margin: 0 auto var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.home-hero__actions {
  display: flex;
  justify-content: center;
}

.home-products {
  background: var(--color-bg);
}

.home-section-heading {
  display: flex;
  gap: var(--space-5);
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.home-section-heading h2 {
  margin-bottom: 0;
  font-size: var(--text-xl);
  font-weight: 620;
}

.home-section-heading a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

.home-section-heading a:hover {
  color: var(--color-accent);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-line);
}

.home-product {
  position: relative;
  min-height: 12.5rem;
  padding: clamp(1.35rem, 2.5vw, 1.9rem);
  border-right: 1px solid var(--color-line);
  color: inherit;
  text-decoration: none;
  transition: background-color var(--duration-normal) ease, border-color var(--duration-fast) ease;
}

.home-product:last-child {
  border-right: 0;
}

.home-product:hover {
  background: var(--color-surface);
}

.home-product__label {
  display: block;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.home-product h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.home-product p {
  max-width: 22rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.home-product__arrow {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  color: var(--color-accent);
  font-size: var(--text-lg);
  transition: transform var(--duration-fast) var(--ease-out);
}

.home-product:hover .home-product__arrow {
  transform: translateX(0.16rem);
}

.home-updates {
  background: var(--color-surface);
}

.home-updates__layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
}

.home-section-heading--stacked {
  display: grid;
  justify-content: start;
  margin-bottom: 0;
}

.home-update-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-text);
  list-style: none;
}

.home-update-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: var(--space-5);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-line);
}

.home-update-list time {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
}

.home-feedback {
  padding-block: clamp(2.75rem, 5vw, 4rem);
  border-top: 1px solid var(--color-line);
}

.home-feedback__inner {
  display: flex;
  gap: var(--space-7);
  align-items: center;
  justify-content: space-between;
}

.home-feedback h2 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.home-feedback p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 48rem) {
  .home-hero {
    min-height: 28rem;
  }

  .home-hero__inner {
    padding-block: 4.5rem;
  }

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

  .home-product {
    min-height: auto;
    padding-block: var(--space-6);
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .home-product:last-child {
    border-bottom: 0;
  }

  .home-product__label {
    margin-bottom: var(--space-5);
  }

  .home-updates__layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 34rem) {
  .home-hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.65rem);
  }

  .home-update-list li {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .home-feedback__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
