/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: clip;
}

.hero__scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  pointer-events: none;
}
.hero__arch-svg {
  width: min(52vw, 620px);
  height: auto;
  margin-right: clamp(-4vw, -2vw, 2vw);
  opacity: 0.9;
}
.hero__arch-outer, .hero__arch-inner, .hero__bar { stroke: var(--t-ink); opacity: 0.16; }
.hero__vine { stroke: var(--t-rose); opacity: 0.7; }
.hero__leaves { fill: var(--t-sage); opacity: 0; transition: opacity var(--dur-slow) var(--ease); }
.hero__flowers { fill: var(--t-rose); opacity: 0; transition: opacity var(--dur-slow) var(--ease); }
.hero__diamonds polygon { fill: var(--t-ink); opacity: 0.14; }
.hero__mono {
  font-family: var(--font-display); font-size: 168px; fill: var(--t-ink);
  opacity: 0; transition: opacity var(--dur-slow) var(--ease);
}
.hero__mono:first-of-type { opacity: 0; }

.hero.is-grown .hero__leaves,
.hero.is-grown .hero__flowers,
.hero.is-grown .hero__mono { opacity: 0.1; }

.hero__wash {
  position: absolute; right: -10%; top: -10%; width: 60vmin; height: 60vmin;
  background: var(--grad-canopy); filter: blur(60px); opacity: 0.55;
}

.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 0.8fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__eyebrow { margin-bottom: 22px; }
.hero__title { margin-bottom: 26px; }
.hero__lead { max-width: 46ch; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__fine { font-size: var(--t-xs); color: var(--text-3); letter-spacing: 0.02em; }

/* ---------- Product card ---------- */
.hero__device { display: flex; justify-content: center; }
.hero__device-in { width: min(100%, 340px); }

.card { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--sh-lg); }
.hero__card {
  border-radius: var(--r-arch);
  padding: 30px 26px 26px;
  display: flex; flex-direction: column; gap: 18px;
}

.hero__card-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.hero__card-mark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.hero__card-tag { font-size: var(--t-xs); color: var(--text-3); }

.hero__card-row, .hero__card-ticket, .hero__card-msg {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--r-md); background: var(--surface-sunk);
}

.hero__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--t-rose-ink); color: var(--t-cream);
  font-size: 0.75rem; font-weight: 700;
}
.hero__avatar--sm { width: 28px; height: 28px; background: var(--t-forest); }

.hero__row-body, .hero__ticket-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.hero__row-body b, .hero__ticket-body b { font-size: var(--t-sm); }
.hero__row-body em, .hero__ticket-body em { font-size: var(--t-xs); color: var(--text-3); font-style: normal; }
.hero__row-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--t-forest); background: rgba(107,127,100,0.16); padding: 4px 9px; border-radius: var(--r-pill);
  flex: none;
}

.hero__ticket-qr { color: var(--t-ink); flex: none; }
.hero__msg-bubble { font-size: var(--t-xs); line-height: 1.4; color: var(--text-2); }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__scene { justify-content: center; opacity: 0.5; }
  .hero__device { margin-top: 8px; }
}
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__arch-svg { width: 84vw; }
}
