/* ============================================================
   Living Proof — MultiLife built two ways.
   Layers on top of lullabeast-v5.css (topbar, wordmark, btn,
   eyebrow, wrap, act, foot all reused from there).
   ============================================================ */

.lp-hero { padding-top: clamp(104px, 16vh, 150px); padding-bottom: clamp(40px, 6vh, 64px); }
.lp-hero h1 {
  font-size: clamp(34px, 5.6vw, 60px);
  letter-spacing: -.03em;
  line-height: 1.0;
  margin-top: 22px;
  max-width: 18ch;
}
.lp-hero h1 .dim { color: var(--dim); }
.lp-hero__sub {
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 60ch;
}
.lp-hero__sub b { color: var(--ink-bright); font-weight: 600; }

/* ---------- the build toggle ---------- */
.lp-toggle {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 760px;
}
.lp-opt {
  --c: var(--line-2);
  text-align: left;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line-2);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.lp-opt:hover { border-color: var(--line-2); transform: translateY(-1px); }
.lp-opt.is-active { border-color: var(--c); border-top-color: var(--c); background: var(--panel); }
.lp-opt__top { display: flex; align-items: center; gap: 10px; }
.lp-opt__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px -1px var(--c); flex: none; }
.lp-opt__role { font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--c); font-weight: 700; }
.lp-opt__where { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: .04em; }
.lp-opt__models { margin-top: 12px; display: grid; gap: 4px; }
.lp-opt__m { font-family: var(--mono); font-size: 12px; color: var(--ink); display: flex; gap: 8px; }
.lp-opt__m span { color: var(--dim); width: 64px; text-transform: uppercase; font-size: 10px; letter-spacing: .08em; }
.lp-opt--local { --c: var(--teal); }
.lp-opt--cloud { --c: var(--amber); }

/* ---------- per-build stat strip ---------- */
.lp-stats {
  margin-top: 16px;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.lp-stat { background: var(--panel-2); padding: 14px 16px; }
.lp-stat .k { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.lp-stat .v { font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--ink-bright); margin-top: 6px; letter-spacing: -.01em; }
.lp-stat .v.accent { color: var(--build-accent, var(--amber)); }

/* ---------- the live stage ---------- */
.lp-stage {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 920px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 34px 90px -46px rgba(0,0,0,.85);
}
.lp-bar { display: flex; align-items: center; gap: 14px; padding: 11px 16px; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.lp-dots { display: inline-flex; gap: 7px; flex: none; }
.lp-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.lp-url { font-family: var(--mono); font-size: 12px; color: var(--dim); letter-spacing: .03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-url b { color: var(--ink); font-weight: 600; }
.lp-full { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--dim); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; flex: none; }
.lp-full:hover { color: var(--amber); }

.lp-frames { position: relative; height: 850px; background: #060810; transition: height .35s var(--ease); overflow: hidden; }
.lp-frames iframe { border: 0; display: block; transform-origin: top left; }
.lp-frames iframe[hidden] { display: none; }

.lp-hint {
  margin-top: 18px;
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--dim);
}
.lp-hint b { color: var(--ink); font-weight: 600; }
.lp-hint .sep { color: var(--dimmer); }

.lp-note {
  margin-top: 40px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 64ch;
}
.lp-note b { color: var(--ink-bright); font-weight: 600; }

.lp-back { margin-top: 30px; }

@media (max-width: 720px) {
  .lp-toggle { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .lp-bar { padding: 9px 12px; gap: 9px; }
  .lp-url { font-size: 10.5px; }
  .lp-opt__where { display: none; }
}
