/* HERO */
#hero {
  background: var(--bg);
  overflow: hidden;
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-text { padding-bottom: clamp(60px, 8vw, 100px); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tomato);
  background: rgba(230,80,42,0.1);
  border-radius: var(--r-pill);
  padding: 12px 22px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tomato);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow::before { animation: pulse-dot 1.8s ease-in-out infinite; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--sage); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.65; color: var(--ink-60); max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* phone mockup */
.hero-phone { display: flex; justify-content: center; align-items: flex-end; }
.phone-frame { position: relative; width: min(280px, 100%); aspect-ratio: 9/19; background: var(--dark); border-radius: 40px; padding: 7px; box-shadow: 0 40px 80px rgba(42,26,12,0.28), 0 2px 0 rgba(255,255,255,0.12) inset; transform: translateY(0); }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; background: var(--bg); overflow: hidden; position: relative; }
.phone-screen img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
