/* =========================================================================
   NoteCast product page
   ========================================================================= */

.app-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 720px) {
  .app-hero { padding: 44px 0 24px; }
}

.app-hero-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.app-hero-icon {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
}

.app-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-hero h1 {
  margin-top: 26px;
  font-size: clamp(34px, 6vw, 52px);
  color: var(--text);
}

.app-hero .tagline {
  margin-top: 14px;
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--accent-ink);
  font-weight: 600;
}

.app-hero p.desc {
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--text-dim);
}

.app-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent-ink);
  color: #fdf8ee;
}

.store-badge svg { flex-shrink: 0; }

.store-badge .lines {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge .lines small {
  font-size: 10.5px;
  opacity: 0.75;
}

.store-badge .lines strong {
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}

.app-hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-faint);
}

/* --- Hero photo -------------------------------------------------------- */

.hero-photo {
  margin-top: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .hero-photo { margin-top: 28px; border-radius: var(--radius-md); }
}

/* --- Feature rows ----------------------------------------------------- */

.feature-row {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--border);
}

@media (min-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .feature-row.reverse .feature-visual { order: 2; }
  .feature-row.reverse .feature-copy { order: 1; }
}

.feature-index {
  font-family: var(--font-display);
  color: var(--text-faint);
  font-size: 14px;
}

.feature-copy h3 {
  margin-top: 12px;
  font-size: clamp(22px, 3vw, 30px);
}

.feature-copy p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 46ch;
}

.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Final CTA ------------------------------------------------------- */

.app-final-cta {
  text-align: center;
  padding: 64px 32px;
  border-radius: var(--radius-lg);
  background: #2a2013;
  color: #fdf8ee;
}

.app-final-cta h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.app-final-cta p {
  margin-top: 14px;
  color: rgba(253, 248, 238, 0.7);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.app-final-cta .hero-actions,
.app-final-cta .app-hero-actions {
  justify-content: center;
  margin-top: 30px;
}
