:root{
  /* Quiet Trust Brand */
  --primary:#1F3A5F;     /* Deep Trust Blue */
  --secondary:#EDE6DA;   /* Warm Presence Sand */
  --accent:#C76D4A;      /* Living Heart Ember */

  --bg:#ffffff;
  --text:#0F172A;
  --muted:#475569;
  --border:#E2E8F0;

  --radius:18px;
  --shadow: 0 12px 30px rgba(2,6,23,.08);
  --max: 980px;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 50% -220px, rgba(31,58,95,.16), transparent 60%),
    radial-gradient(900px 520px at 12% -240px, rgba(199,109,74,.10), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:var(--primary); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:var(--max); margin:0 auto; padding:40px 18px 70px}

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:8px 0 20px;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px;
}
.mark{
  width:34px; height:34px; border-radius:14px;
  background: linear-gradient(135deg, var(--primary), rgba(31,58,95,.55));
  box-shadow: 0 14px 26px rgba(31,58,95,.22);
}
.nav a{
  font-weight:700; color:var(--muted); margin-left:14px;
}
.nav a:hover{color:var(--text); text-decoration:none}

.hero{
  padding:26px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background: rgba(237,230,218,.35);
  box-shadow: var(--shadow);
}

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--primary);
  font-weight:900; font-size:12px;
  letter-spacing:.14em; text-transform:uppercase;
}
.dot{width:8px; height:8px; border-radius:999px; background:var(--accent)}

h1{margin:14px 0 10px; font-size:44px; line-height:1.12}
.sub{margin:0; color:var(--muted); font-size:18px; max-width:70ch}

.actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  color:var(--text);
  cursor:pointer;
  transition: transform .08s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  background: linear-gradient(135deg, var(--primary), rgba(31,58,95,.9));
  border-color: transparent;
  color:#fff;
  box-shadow: 0 16px 34px rgba(31,58,95,.22);
}
.btn.soft{
  background: rgba(237,230,218,.55);
  border-color: rgba(31,58,95,.14);
  color: var(--primary);
}

.grid{margin-top:16px; display:grid; grid-template-columns: 1fr; gap:14px}
@media (min-width: 900px){ .grid{grid-template-columns: 1fr 1fr} }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
}
.card h2{
  margin:0 0 8px;
  font-size:18px;
  color:var(--primary);
  letter-spacing:.2px;
}
.card p{margin:0; color:var(--muted); font-size:15px}

.section{
  margin-top:18px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background:#fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
}
.section h3{margin:0 0 10px; font-size:20px; color:var(--primary)}
.section p{margin:0 0 10px; color:var(--muted)}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(31,58,95,.16);
  background: rgba(237,230,218,.45);
  font-weight:800;
  color: var(--primary);
}

hr.sep{
  border:none; height:1px; background: var(--border);
  margin:18px 0;
}

.quote{
  padding:16px 16px;
  border-radius: 16px;
  background: rgba(237,230,218,.55);
  border:1px solid rgba(31,58,95,.14);
  color: var(--muted);
  white-space: pre-line;
}

footer{
  margin-top:26px;
  display:flex; justify-content:space-between; gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

.small{font-size:13px; color:var(--muted)}

@media print{
  .topbar, .actions, footer{display:none}
  body{background:#fff}
  .hero, .card, .section{box-shadow:none}
}
