/* GuardianSOS — demo app styles.
 * Deliberately a different look from FitTrack (safety blue / red, not orange). */

:root {
  --brand: #1d4ed8;
  --brand-strong: #1e3a8a;
  --danger: #dc2626;
  --ink: #1e293b;
  --muted: #94a3b8;
  --surface: #ffffff;
  --bg: #eef2f8;
  --radius-lg: 28px;
  --radius-md: 16px;
  --font: -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background: var(--bg);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.phone {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Safety disclaimer banner */
.disclaimer {
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  line-height: 1.45;
  padding: 12px 18px;
  border-bottom: 1px solid #fde68a;
}

/* Header */
.app-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  padding: 26px 24px 22px;
  text-align: center;
}
.app-header__logo {
  font-size: 26px;
  font-weight: 800;
}
.app-header__subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}
.badge-soon {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.preview-note {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

/* Screen layout */
.screen {
  padding: 22px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Generic card */
.card {
  background: #f6f8fc;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  padding: 16px;
}
.card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
}
.profile__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
}
.profile__meta {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

/* Trusted contacts */
.contacts {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts li {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.contacts span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

/* SOS button */
.sos-btn {
  border: none;
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  background: var(--danger);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
  transition: transform 0.08s ease, opacity 0.2s ease;
}
.sos-btn:active {
  transform: scale(0.97);
}

.sos-status {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}
