/* Coque app (prototype + futurs écrans PWA) */
body.page-app {
  padding-bottom: 88px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 6, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  padding: 16px 20px;
}

.top-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-app .logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-app .logo-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--v), var(--pk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.page-app .logo-name {
  font-size: 22px;
  font-weight: 200;
  letter-spacing: 8px;
  color: #fff;
}

.top a {
  font-size: 13px;
  color: var(--v2);
  text-decoration: none;
}

.top a:hover {
  text-decoration: underline;
}

main.app-main {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 20px 32px;
}

.screen {
  display: none;
  animation: aura-fade 0.35s ease;
}

.screen.active {
  display: block;
}

@keyframes aura-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.app-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.app-main h1 em {
  color: var(--v3);
  font-style: italic;
}

.lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.card {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card p,
.card li {
  font-size: 14px;
  color: #a39eae;
  line-height: 1.65;
}

.card ul {
  margin: 10px 0 0 18px;
}

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--gn);
  margin-top: 12px;
}

.nav-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 12px 16px 20px;
  background: linear-gradient(to top, rgba(8, 6, 14, 0.98), rgba(8, 6, 14, 0.92));
  border-top: 1px solid rgba(124, 58, 237, 0.12);
}

.nav-dock-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: #6b6578;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  transition: all 0.2s;
}

.nav-btn span {
  font-size: 20px;
  line-height: 1;
}

.nav-btn:hover {
  color: var(--v2);
}

.nav-btn.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.25);
  color: #fff;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Outfit', system-ui, sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--v), var(--pk));
  color: #fff;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
}

.btn-ghost {
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  color: var(--v2);
}
