@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --bg-1: #f5efe6;
  --bg-2: #e3f1ee;
  --card: rgba(255, 255, 255, 0.78);
  --ink: #1d1b17;
  --muted: #6d685f;
  --accent: #ff6b4a;
  --accent-2: #0f9aa7;
  --neutral: #d6cec2;
  --grid: #eee6da;
  --shadow: 0 18px 45px rgba(29, 27, 23, 0.12);
  --brand-blue: #235789;
  --brand-cream: #ead2ac;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 15% 0%, var(--bg-2) 0%, transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(255, 107, 74, 0.12) 0%, transparent 50%),
    var(--bg-1);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

.hero {
  margin-bottom: 32px;
}

.plate {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--brand-cream);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

h1 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 28em;
}

.card {
  background: var(--card);
  border: 1px solid rgba(29, 27, 23, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 8px 28px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  padding: 18px 0;
  border-bottom: 1px solid var(--grid);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 154, 167, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11.5L9.5 15L16 8.5' stroke='%230f9aa7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.features li:last-child {
  border-bottom: none;
}

.status {
  margin: 40px 0 56px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent-2);
  background: rgba(15, 154, 167, 0.06);
  border-radius: 0 12px 12px 0;
}

.status p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

a {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

a:hover {
  border-bottom-color: var(--accent-2);
}

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--grid);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}

footer a {
  color: var(--muted);
}

/* Long-form pages (privacy, terms) */
article {
  background: var(--card);
  border: 1px solid rgba(29, 27, 23, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 44px;
  margin: 32px 0;
  backdrop-filter: blur(10px);
}

article h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

article .meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

article h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22px;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

article p, article li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

article ul {
  padding-left: 22px;
}

@media (max-width: 480px) {
  .wrap { padding: 40px 20px 32px; }
  h1 { font-size: 40px; }
  .lede { font-size: 17px; }
  article { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
