.hero {
  padding: 56px 0 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  min-height: calc(100vh - 82px);
  gap: 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 0 72px;
  max-width: 720px;
}

.hero__media {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 720px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%) contrast(1.15) brightness(0.9);
}

/* =========================
   TICKER
   ========================= */

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;

  background: #ffffff;
  color: #000000;

  transform: rotate(-1.2deg);
  margin: 40px 0;
}

.ticker__inner {
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: ticker-scroll 16s linear infinite;
}
.ticker__item {
  white-space: nowrap;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
	position: relative;
  overflow: hidden;
  max-width: 100%;
}

/* animation */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero__title {
  text-shadow: 0 0 1px rgba(255,255,255,0.15);
  margin: 0;
  max-width: 7ch;
  font-size: clamp(5rem, 9vw, 9.5rem);
  line-height: 0.86;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.07em;
}

.hero__title br {
  display: block;
}

.hero__subtitle {
  margin: 28px 0 0;
  font-size: 1.1rem;
  line-height: 1.15;
  max-width: 16ch;
  font-weight: 500;
}

.hero__button {
  margin-top: 28px;
  width: 100%;
  max-width: 360px;
}
.hero__image {
  border-left: 1px solid #2a2a2a;
}

.hero__content {
  position: relative;
}
.hero__content::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -24px;
  bottom: -40px;
  width: calc(100% + 24px);
  background: #000000;
  border-right: 1px solid #2a2a2a;
  z-index: -1;
}
/* =========================
   PRODUCT SNAPSHOT
   ========================= */

.product-snapshot {
  padding: 120px 0;
  border-top: 1px solid #2a2a2a;
}

.product-snapshot__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* LEFT SIDE */

.product-snapshot__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.product-snapshot__title {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

/* RIGHT SIDE */

.product-snapshot__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

/* CARD */

.product-card {
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
}

.product-card__number {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.5;
}

.product-card__title {
  margin-top: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-card__text {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: 0.8;
  max-width: 28ch;
}