/* ============================================================================
   Evotic — Placeholder "coming soon" pages (assistance, games, settings)
   Shared minimal CSS — pages awaiting their dedicated phase.
   ============================================================================ */

.ph-body {
  padding: 0;
  background: var(--bg);
  min-height: 100dvh;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255, 102, 0, 0.06), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(124, 58, 237, 0.05), transparent 50%);
  background-attachment: fixed;
}

/* App-header (shared) */
.app-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding-top: var(--safe-top);
  box-shadow: var(--shadow-header);
}
.app-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-4);
}
.app-header-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.app-header-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.02em;
}
.app-header-sub {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hdr-back {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.hdr-back:hover { background: var(--skeleton); }
.hdr-back:active { transform: scale(0.92); }

.ph-shell {
  max-width: 460px;
  margin: 0 auto;
  padding: var(--sp-7) var(--sp-5);
  padding-bottom: max(var(--sp-7), calc(var(--safe-bottom) + var(--sp-5)));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.ph-illust {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: var(--sp-5) 0 var(--sp-2);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ph-illust.--assistance { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); color: #7C3AED; }
.ph-illust.--games      { background: linear-gradient(135deg, #F3E5F5, #E1BEE7); color: #8E24AA; }
.ph-illust.--settings   { background: linear-gradient(135deg, #ECEFF1, #CFD8DC); color: #455A64; }

.ph-illust::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  opacity: 0.35;
  animation: phPulse 4s ease-in-out infinite;
}
@keyframes phPulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50%      { transform: scale(1.08); opacity: 0.15; }
}

.ph-title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.ph-soon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  background: var(--primary-grad);
  color: #fff;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-primary-sm);
}
.ph-tagline {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 360px;
}
.ph-tagline strong { color: var(--text); font-weight: 800; }

.ph-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  width: 100%;
  margin-top: var(--sp-3);
}
.ph-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  text-align: left;
  border: 1px solid transparent;
  transition: border-color var(--t-fast), box-shadow var(--t-base);
}
.ph-feature:hover { border-color: var(--primary-bg); box-shadow: var(--shadow-card-hover); }
.ph-feature-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: var(--primary-bg);
  color: var(--primary);
}
.ph-feature-text {
  flex: 1;
  min-width: 0;
}
.ph-feature-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 2px;
  letter-spacing: 0.01em;
}
.ph-feature-desc {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.ph-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-4);
  padding: 12px 20px;
  background: var(--card-bg);
  color: var(--primary);
  border-radius: var(--r-lg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  border: 1.5px solid var(--primary);
  transition: background var(--t-fast), color var(--t-fast);
}
.ph-cta:hover { background: var(--primary); color: #fff; }
