/* ── DEVICE SHOWCASE SECTION ── */
#showcase {
  position: relative;
  width: 100%;
  height: 400vh;
}
.showcase-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cobalt);
}

/* Device stage — center */
.device-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PHONE MOCKUP ── */
.phone-mockup {
  position: absolute;
  transform: scale(0);
}
.phone-img {
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6));
}
.android-mockup {
  transform: scale(0);
}

/* ── LAPTOP MOCKUP ── */
.laptop-mockup {
  position: absolute;
  transform: scale(0);
}
.macbook-img {
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* ── SHOWCASE TEXT PANELS ── */
.showcase-text {
  position: absolute;
  max-width: 260px;
  opacity: 0;
  z-index: 10;
}
.showcase-text.left { left: 6vw; }
.showcase-text.right { right: 6vw; text-align: right; }
.showcase-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.showcase-text.right .showcase-eyebrow { justify-content: flex-end; }
.showcase-eyebrow::before {
  content: '';
  width: 20px; height: 0.5px;
  background: var(--gold);
  display: block;
}
.showcase-text.right .showcase-eyebrow::before { display: none; }
.showcase-eyebrow::after {
  content: '';
  display: none;
}
.showcase-text.right .showcase-eyebrow::after {
  display: block;
  width: 20px; height: 0.5px;
  background: var(--gold);
}
.showcase-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1rem;
}
.showcase-title em { font-style: italic; color: var(--gold-light); }
.showcase-desc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.showcase-text.right .showcase-tags { justify-content: flex-end; }
.s-tag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 0.5px solid rgba(201,169,110,0.35);
  color: var(--gold-dim);
  padding: 3px 8px;
}

/* Center-bottom text panel for Android */
.showcase-text.center-bottom {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 320px;
  opacity: 0;
}
