/* Pure CSS app screen mockups — no external images */

.mock-phone {
  aspect-ratio: 390 / 780;
  background: linear-gradient(180deg, #0a0c14 0%, #121521 100%);
  position: relative;
  overflow: hidden;
  font-size: clamp(9px, 2.8vw, 11px);
  color: var(--text);
}

.mock-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(0, 240, 255, 0.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(138, 43, 226, 0.14), transparent 40%);
  pointer-events: none;
}

.mock-status {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 6px;
  color: var(--muted);
  font-size: 0.95em;
  font-weight: 600;
}

.mock-status__dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.mock-status__dots span {
  display: block;
  border-radius: 2px;
  background: var(--muted);
}

.mock-status__dots span:nth-child(1) { width: 14px; height: 8px; border-radius: 3px; border: 1px solid var(--muted); background: transparent; }
.mock-status__dots span:nth-child(2) { width: 10px; height: 6px; }

.mock-body {
  position: relative;
  z-index: 1;
  padding: 0 12px 56px;
  min-height: calc(100% - 34px);
}

.mock-body--chat {
  padding-bottom: 52px;
}

.mock-title {
  margin: 4px 0 10px;
  font-size: 1.65em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mock-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mock-tab {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid transparent;
}

.mock-tab.is-active {
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.28);
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-row.is-pin {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.2);
}

.mock-avatar {
  flex-shrink: 0;
  width: 2.6em;
  height: 2.6em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1em;
  background: #1e293b;
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  color: var(--cyan);
}

.mock-avatar.purple { border-color: rgba(138, 43, 226, 0.45); color: #b794f6; }
.mock-avatar.green { border-color: rgba(52, 211, 153, 0.45); color: var(--green); }
.mock-avatar.gold { border-color: rgba(234, 179, 8, 0.45); color: var(--gold); }
.mock-avatar.plain { border-color: rgba(148, 163, 184, 0.25); color: var(--text-secondary); }

.mock-row__main { flex: 1; min-width: 0; }

.mock-row__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.mock-row__name {
  font-weight: 600;
  font-size: 1.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-row__time {
  color: var(--muted);
  font-size: 0.82em;
  flex-shrink: 0;
}

.mock-row__preview {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-row__preview .at { color: var(--cyan); }

.mock-badge {
  flex-shrink: 0;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--green);
  color: #041018;
  font-size: 0.78em;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.mock-badge.cyan { background: var(--cyan); }

.mock-pin {
  margin-left: 6px;
  font-size: 0.72em;
  font-weight: 700;
  color: var(--gold);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.mock-back {
  width: 1.6em;
  height: 1.6em;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.mock-back::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 7px;
  height: 7px;
  border-left: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translate(-50%, -50%) rotate(45deg);
}

.mock-header__info strong {
  display: block;
  font-size: 1.05em;
}

.mock-header__info span {
  color: var(--muted);
  font-size: 0.82em;
}

.mock-header__info .online { color: #4ade80; }

.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.mock-msg.is-self {
  flex-direction: row-reverse;
}

.mock-bubble {
  max-width: 72%;
  padding: 8px 11px;
  border-radius: 14px;
  font-size: 0.92em;
  line-height: 1.45;
  background: #1e293b;
  color: #e5e7eb;
}

.mock-bubble.is-self {
  background: linear-gradient(135deg, var(--cyan), #0080ff);
  color: #041018;
}

.mock-bubble.is-file {
  padding-bottom: 6px;
}

.mock-file {
  margin-top: 6px;
  height: 2.4em;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.82em;
}

.mock-msg__label {
  font-size: 0.78em;
  color: var(--muted);
  margin-bottom: 2px;
}

.mock-voice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mock-voice-badge::before {
  content: "";
  width: 3px;
  height: 10px;
  background: currentColor;
  border-radius: 2px;
  box-shadow: 5px -3px 0 currentColor, 10px 2px 0 currentColor, 15px -2px 0 currentColor;
}

.mock-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #4ade80;
  font-size: 0.82em;
  font-weight: 600;
  margin-bottom: 14px;
}

.mock-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.mock-stage {
  position: relative;
  height: 11em;
  margin: 8px 0 14px;
  display: grid;
  place-items: center;
}

.mock-stage__ring {
  width: 7.5em;
  height: 7.5em;
  border-radius: 50%;
  border: 2px solid rgba(138, 43, 226, 0.35);
  background: rgba(138, 43, 226, 0.08);
  display: grid;
  place-items: center;
}

.mock-stage__mic {
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
  position: relative;
}

.mock-stage__mic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: 0.55em;
  height: 0.9em;
  border-radius: 999px;
  background: #041018;
}

.mock-orbit {
  position: absolute;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background: #1e293b;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85em;
}

.mock-orbit:nth-child(1) { top: 0; left: 18%; color: var(--cyan); border-color: rgba(0, 240, 255, 0.35); }
.mock-orbit:nth-child(2) { top: 0; right: 18%; color: #b794f6; border-color: rgba(138, 43, 226, 0.35); }
.mock-orbit:nth-child(3) { bottom: 8%; left: 8%; color: var(--green); border-color: rgba(52, 211, 153, 0.35); }
.mock-orbit:nth-child(4) { bottom: 8%; right: 8%; color: var(--gold); border-color: rgba(234, 179, 8, 0.35); }

.mock-speaker {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-speaker strong { display: block; font-size: 0.95em; }
.mock-speaker span { color: var(--muted); font-size: 0.85em; }

.mock-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 16px 14px;
  background: rgba(10, 12, 20, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-tabbar__pill {
  height: 2.6em;
  border-radius: 999px;
  background: rgba(18, 21, 33, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mock-tabbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.mock-tabbar__dot.is-active {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.mock-controls {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 8px 0 4px;
}

.mock-ctrl {
  width: 2.8em;
  height: 2.8em;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.mock-ctrl.is-main {
  width: 3.2em;
  height: 3.2em;
  border-color: rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
}

.mock-composer {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  height: 2.8em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.9em;
}

.mock-composer::after {
  content: "";
  margin-left: auto;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: var(--green);
}

.shot-card .mock-phone,
.phone-frame .mock-phone {
  width: 100%;
  border-radius: 0;
}

.phone-frame .mock-phone {
  border-radius: 24px;
}

.app-logo-wrap {
  display: grid;
  place-items: center;
  border-radius: 24%;
  background: linear-gradient(145deg, #121521, #0a0c14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.app-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 240, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.app-logo-wrap svg {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
}

.app-logo-wrap--sm { width: 32px; height: 32px; border-radius: 8px; position: relative; }
.app-logo-wrap--md { width: 96px; height: 96px; position: relative; }
.app-logo-wrap--lg { width: 120px; height: 120px; position: relative; }

.feature-icon svg,
.feature-icon img {
  width: 28px;
  height: 28px;
}

.hero-blob-css {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-blob-css.cyan {
  width: 200px;
  height: 200px;
  background: var(--cyan);
  top: 10%;
  left: 0;
}

.hero-blob-css.purple {
  width: 220px;
  height: 220px;
  background: var(--purple);
  bottom: 0;
  right: 0;
}
