/* iPhone 17 Pro Max 比例：430 × 932 */
.phone-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
  min-height: 0;
  padding: 16px 24px;
}
.phone-frame {
  width: 430px;
  height: min(932px, calc(100vh - 88px));
  max-height: calc(100vh - 88px);
  border-radius: 52px;
  border: 11px solid #1c1c1e;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 48px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}
.phone-frame-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 42px;
  overflow: hidden;
  background: #f8fafc;
}
.phone-status-bar {
  flex-shrink: 0;
  height: 54px;
  padding: 14px 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
}
.phone-status-bar.light-on-orange { background: transparent; color: #fff; }
.phone-status-bar .sb-icons { display: flex; align-items: center; gap: 6px; }
.phone-status-bar .sb-signal {
  width: 18px; height: 11px; border: 1.5px solid currentColor; border-radius: 2px; position: relative;
}
.phone-status-bar .sb-signal::after {
  content: ''; position: absolute; right: -3px; bottom: 0; width: 2px; height: 6px; background: currentColor; border-radius: 0 1px 1px 0;
}
.phone-status-bar .sb-battery {
  width: 26px; height: 12px; border: 1.5px solid currentColor; border-radius: 2px; position: relative;
}
.phone-status-bar .sb-battery::before { content: ''; position: absolute; right: -3px; top: 3px; width: 2px; height: 5px; background: currentColor; border-radius: 0 1px 1px 0; }
.phone-status-bar .sb-battery::after { content: ''; position: absolute; left: 2px; top: 2px; bottom: 2px; width: 17px; background: #34c759; border-radius: 1px; }
.phone-iframe-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  background: #f8fafc;
}
.phone-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #f8fafc;
}
