.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 84px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}

.hero__content h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
}

.hero__content {
  max-width: 70ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__media {
  align-self: stretch;
  display: grid;
  place-items: center;
}

.product-visual {
  width: min(520px, 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-visual__chrome {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(241, 239, 231, 0.85);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(28, 27, 23, 0.18);
}

.dot--1 {
  background: rgba(235, 94, 40, 0.35);
}

.dot--2 {
  background: rgba(255, 200, 87, 0.35);
}

.dot--3 {
  background: rgba(45, 106, 79, 0.35);
}

.product-visual__body {
  padding: 18px;
}

.product-visual__title {
  margin: 0 0 6px;
  font-weight: 800;
}

.product-visual__text {
  margin: 0;
  color: var(--text-muted);
}

.slot {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.slot__label {
  font-weight: 850;
  letter-spacing: 0.01em;
}

.slot__window {
  position: relative;
  height: 46px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.78);
}

.slot__window::before,
.slot__window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
  z-index: 2;
}

.slot__window::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(241, 239, 231, 0.95), rgba(241, 239, 231, 0));
}

.slot__window::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(241, 239, 231, 0.95), rgba(241, 239, 231, 0));
}

.slot__reel {
  will-change: transform;
  transform: translateY(0);
}

.slot.is-spinning .slot__reel {
  filter: blur(0.6px);
}

.slot__item {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot__note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0;
  }
}

.problems,
.features,
.audience {
  padding: 72px 0;
  background: var(--bg-primary);
}

.features {
  background: var(--bg-muted);
}

.trust-bar {
  padding: 18px 0;
  background: var(--bg-muted);
  border-top: 1px solid rgba(28, 27, 23, 0.08);
  border-bottom: 1px solid rgba(28, 27, 23, 0.08);
}

.trust-bar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.benefits {
  padding: 72px 0;
  background: var(--bg-primary);
}

.benefits__grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-proof {
  padding: 72px 0;
  background: var(--bg-muted);
}

.pricing-preview {
  padding: 72px 0;
  background: var(--bg-primary);
}

.pricing-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.primary-cta {
  padding: 72px 0;
  background: var(--bg-muted);
}

.primary-cta__panel {
  max-width: 880px;
  margin: 0 auto;
}

.primary-cta__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.primary-cta__fineprint {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .problems,
  .features,
  .audience {
    padding: 56px 0;
  }

  .benefits,
  .social-proof {
    padding: 56px 0;
  }

  .pricing-preview,
  .primary-cta {
    padding: 56px 0;
  }
}
