body { background: var(--bg); }

.page-head {
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}
.page-head__motif {
  position: absolute;
  top: -30px; left: 5%;
  width: 200px;
  color: var(--sage-2);
  opacity: 0.1;
  pointer-events: none;
}

/* Privacy hero */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 880px) { .privacy-grid { grid-template-columns: 1fr; } }

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.privacy-card__motif {
  position: absolute;
  bottom: -30px; left: -20px;
  width: 140px;
  color: var(--sage-2);
  opacity: 0.06;
}
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.privacy-list__icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--sage-1) 40%, transparent);
  color: var(--sage-3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.privacy-list__t { font-weight: 600; color: var(--ink); }
.privacy-list__d { color: var(--ink-mute); font-size: 0.92rem; line-height: 1.7; }

/* Chat surface */
.chat-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 580px;
  box-shadow: var(--shadow);
  position: relative;
}
.chat-card__head {
  padding: 16px 20px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088cc, #005f8c);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.chat-card__avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ea76b;
  border: 2px solid var(--bg-warm);
}
.chat-card__who { display: flex; flex-direction: column; gap: 2px; }
.chat-card__who-name { font-weight: 600; font-size: 0.95rem; }
.chat-card__who-status { font-size: 0.78rem; color: #2e6b40; display: flex; align-items: center; gap: 4px; }
.chat-card__pill {
  background: color-mix(in srgb, var(--sage-1) 40%, transparent);
  color: var(--sage-3);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Encryption strip */
.enc-strip {
  background: color-mix(in srgb, var(--sage-1) 18%, transparent);
  color: var(--sage-4);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
