/* SafePhone focus landing — palette aligned with app Theme.kt */
:root {
  --sand: #d4a574;
  --mist: #f4f6f5;
  --slate: #1c2524;
  --scrim: #0a1210;
  --text-muted: rgba(255, 255, 255, 0.78);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
  background: radial-gradient(120% 80% at 50% 0%, #152a24 0%, var(--scrim) 55%);
  color: #fff;
  line-height: 1.5;
  padding: calc(1.25rem + var(--safe-top)) 1.25rem calc(2rem + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 26rem;
  text-align: center;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--mist);
}

.lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(127, 212, 188, 0.2);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card strong {
  color: #7fd4bc;
  font-weight: 600;
}

.reason-panel {
  border-color: rgba(212, 165, 116, 0.35);
  background: rgba(212, 165, 116, 0.08);
}

.reason-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

.reason-main {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--mist);
  line-height: 1.35;
}

.reason-type-hint {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reason-detail {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  word-break: break-all;
}

.footnote {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 22rem;
}

.footnote a {
  color: var(--sand);
}

