.app-hero { padding-top: 72px; padding-bottom: 120px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.app-hero h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 8px 14px 8px 12px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  line-height: 1.1;
}
.store-badge:hover { text-decoration: none; opacity: 0.88; }
.store-badge small {
  display: block;
  font-size: 0.62rem;
  opacity: 0.8;
  font-weight: 500;
}
.store-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge.soon {
  background: rgba(0,0,0,0.35);
  color: var(--gold);
  pointer-events: none;
  border-color: rgba(255, 217, 102, 0.28);
}

.hero-phones {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: flex-end;
}
.hero-phones .phone-frame {
  width: 180px;
  transform: rotate(-6deg);
}
.hero-phones .phone-frame.back {
  width: 150px;
  transform: rotate(8deg);
  opacity: 0.9;
}

.screenshot-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.screenshot-strip img {
  height: 420px;
  width: auto;
  flex-shrink: 0;
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature {
  padding: 20px;
}
.feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(125, 214, 255, 0.12);
  color: var(--teal-light);
  font-size: 1.05rem;
}
.feature.plus .icon {
  background: rgba(255, 217, 102, 0.14);
  color: var(--gold);
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.attr {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--muted-2);
  max-width: 42rem;
}

.plus-banner {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 217, 102, 0.12), rgba(11, 78, 162, 0.2));
}
.plus-banner h2 { margin-bottom: 8px; }
.plus-banner p { margin: 0 0 18px; color: var(--muted); }

@media (max-width: 800px) {
  .hero-split, .feature-grid, .news-grid { grid-template-columns: 1fr; }
  .hero-phones { display: none; }
  .screenshot-strip img { height: 340px; }
}
