:root{
  --bg:#f7f6f4;
  --card:#ffffff;
  --accent:#1f8f80;
  --muted:#6b6b6b;
  --text:#0b0b0b;
  --radius:14px;
  --max-width:880px;
  --shadow: 0 6px 26px rgba(9,10,10,0.06);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: linear-gradient(180deg, #fbf8f6 0%, var(--bg) 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding:48px 20px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  font-size:16px;
  line-height:1.6;
}

.container{width:100%; max-width:var(--max-width)}

header{display:flex; gap:16px; align-items:center; margin-bottom:20px}
.logo{
  height:64px; width:64px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#e9fbf7, #dff3ef); border:1px solid rgba(31,143,128,0.08);
  box-shadow:var(--shadow); font-weight:700; color:var(--accent); font-size:28px;
}
h1{margin:0; font-size:24px; letter-spacing:-0.2px}
p.lead{margin:10px 0 0 0; color:var(--muted); font-size:14px}

.card{
  background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:28px; margin-top:18px; border:1px solid rgba(15,15,15,0.02);
}

.meta-row{display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; flex-wrap:wrap}
.meta-row .left{display:flex; gap:12px; align-items:center}
.badge{
  background:rgba(31,143,128,0.14); color:var(--accent); padding:8px 12px; border-radius:999px;
  font-weight:600; font-size:13px;
}

.actions{display:flex; gap:12px}
button.action{
  background:var(--accent); color:white; border:0; padding:10px 14px; border-radius:10px; cursor:pointer; font-weight:600;
  box-shadow: 0 6px 18px rgba(31,143,128,0.12);
}
button.ghost{
  background:transparent; border:1px solid rgba(11,11,11,0.06); color:var(--text); padding:10px 14px; border-radius:10px;
  cursor:pointer; font-weight:600;
}

h2{font-size:18px; margin-top:18px}
h3{font-size:15px; margin-top:12px}
.muted{color:var(--muted); font-size:14px}

ul{margin-top:8px; margin-bottom:8px}
li{margin-bottom:8px}

footer{margin-top:18px; display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.contact{font-size:14px; color:var(--muted)}
.small{font-size:13px; color:var(--muted)}

/* responsive */
@media (max-width:640px){
  body{padding:22px}
  .card{padding:18px}
  header{gap:10px}
  .logo{height:56px; width:56px}
}

/* print styles (clean) */
@media print {
  body{background:white; padding:0}
  .card{box-shadow:none; border:none}
  button, .actions { display:none !important }
}
