/* Lulla — lulla.tepoyan.com
   Warm and quiet, and readable at 3 a.m. on a phone: the app is dark by necessity,
   a page someone reads once in daylight is not. */
:root {
  --bg: #f7f4f0;
  --surface: #fffdfa;
  --ink: #191d2b;
  --muted: #5f6478;
  --rule: #e4ded6;
  --accent: #c9603c;
  --accent-soft: #f6e3da;
  --max-width: 720px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 32px 24px 96px; }

header.site {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 8px 0 32px; border-bottom: 1px solid var(--rule); margin-bottom: 40px;
}
header.site .logo {
  font-weight: 600; font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
header.site nav { display: flex; gap: 18px; font-size: 15px; }
header.site nav a { color: var(--muted); text-decoration: none; }
header.site nav a:hover { color: var(--accent); }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: 38px; line-height: 1.15; margin: 0 0 12px; }
h2 { font-size: 24px; margin: 44px 0 12px; }
h3 { font-size: 18px; margin: 0 0 6px; }

p { margin: 0 0 18px; }
.lead { font-size: 20px; color: var(--muted); margin-bottom: 28px; }
.muted { color: var(--muted); font-size: 15px; }

a { color: var(--accent); }

ul { margin: 0 0 18px; padding-left: 22px; }
li { margin-bottom: 8px; }

.cta {
  display: inline-block; margin: 8px 0 8px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 600; text-decoration: none;
}
.cta:hover { background: #b1512f; }

.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 20px 0 8px;
}
.feature {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 18px 20px;
}
.feature p { margin: 0; font-size: 15.5px; color: var(--muted); }

.callout {
  background: var(--accent-soft); border-radius: var(--radius);
  padding: 18px 20px; margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 15.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }

footer.site {
  margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--rule);
  font-size: 14.5px; color: var(--muted);
}
footer.site a { color: var(--muted); }

@media (max-width: 560px) {
  h1 { font-size: 30px; }
  .lead { font-size: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .wrap { padding: 24px 18px 72px; }
}
