/* ============================================================================
   Eyas — 04b · The morning after  (real product proof: review + streak)
   Two clean captures of the actual cockpit, framed as app windows. Near-
   monochrome + steel; the only colour is what the real UI carries. Classes
   prefixed `proof-`.
   ========================================================================== */

.proof { position: relative; overflow: hidden; }

.proof-bloom {
  position: absolute; z-index: 0; pointer-events: none;
  left: 50%; top: 64%; width: min(70vw, 900px); aspect-ratio: 1.6;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(175,200,228,0.10) 0%, transparent 70%);
  filter: blur(30px);
}

.proof-wrap { position: relative; z-index: 1; }

.proof-head {
  max-width: 52ch;
  margin-bottom: clamp(2.5rem, 5.5vh, 4.5rem);
}
.proof-title { margin-top: var(--sp-4); }

/* ── The two framed shots ───────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vh, 4rem);
}

.proof-shot { margin: 0; }

/* App-window frame: the capture already carries the app's own chrome, so we add
   only a quiet glass edge, a top sheen and a grounding shadow — no fake browser
   bar (that would double the chrome). */
.proof-shot__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 30px 60px -24px rgba(0,0,0,0.7),
    0 2px 8px rgba(0,0,0,0.4),
    inset 0 1px 0 0 rgba(255,255,255,0.05);
  background: var(--bg-deep);
}
/* faint top sheen so the frame reads as glass, not a flat cutout */
.proof-shot__frame::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(232,241,255,0.06) 0%, transparent 18%);
}
.proof-shot__img {
  display: block;
  width: 100%;
  height: auto;
}

/* caption: a small steel tag + a plain-language line */
.proof-shot__cap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.proof-shot__tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--accent);
}
.proof-shot__txt {
  color: var(--text-mid);
  font-size: var(--fs-body);
  line-height: 1.55;
  max-width: 46ch;
}

/* ── Desktop: two windows side by side ──────────────────────────────────── */
@media (min-width: 880px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .proof-head { max-width: 56ch; }
}
