/* design/home-page/shared/phone.css
   A clean modern phone frame + punt.guru app shell, for honest "features on a phone"
   mockups over photographic scenes. Built on brand.css tokens. Lean warm (amber pub-glow)
   to match the in-the-moment scenes. Compose real app content (use components.css) inside
   .pg-phone__app. Heroes may resize the frame via --pg-phone-w. */

.pg-phone {
  --pg-phone-w: 300px;
  position: relative;
  width: var(--pg-phone-w);
  aspect-ratio: 300 / 620;
  border-radius: calc(var(--pg-phone-w) * 0.14);
  background: linear-gradient(160deg, #14161c, #05060a 60%);
  padding: calc(var(--pg-phone-w) * 0.035);
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 8px rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}
.pg-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--pg-phone-w) * 0.105);
  overflow: hidden;
  background: var(--pg-bg);
  display: flex;
  flex-direction: column;
}
.pg-phone__island {
  position: absolute;
  top: calc(var(--pg-phone-w) * 0.035);
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--pg-phone-w) * 0.3);
  height: calc(var(--pg-phone-w) * 0.085);
  background: #000;
  border-radius: 999px;
  z-index: 6;
}

/* App shell */
.pg-phone__app {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: var(--pg-text);
  background:
    radial-gradient(140% 50% at 50% -8%, rgba(245, 158, 11, 0.16), transparent 60%),
    linear-gradient(180deg, #0d2342, var(--pg-bg) 62%);
  background-color: var(--pg-bg);
  font-family: var(--pg-font-body);
}
.pg-phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px 4px;
  font-family: var(--pg-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--pg-text);
}
.pg-phone__status-icons {
  display: flex;
  gap: 5px;
  opacity: 0.85;
  font-size: 11px;
}
.pg-phone__appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 12px;
}
.pg-phone__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pg-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--pg-text-strong);
}
.pg-phone__brand img {
  height: 18px;
  width: auto;
}
.pg-phone__round {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pg-amber);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.24);
}
.pg-phone__body {
  flex: 1;
  min-height: 0;
  padding: 2px 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow: hidden;
}
