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

:root {
  --bg:   #FAFAF8;
  --ink:  #1A1A1A;
  --mute: #888;
  --rule: #E4E4E0;
  --max:  680px;
  --pad:  clamp(1.5rem, 5vw, 3rem);
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Layout ── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

header {
  padding: 3rem 0 2.5rem;
}

main {
  flex: 1;
  padding-bottom: 4rem;
}

footer {
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--mute);
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer nav { display: flex; gap: 1.25rem; }
footer a { color: var(--mute); text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ── Type ── */

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 2.5rem 0 0.75rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); }
a:hover { opacity: 0.6; }

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}

ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mute);
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

/* ── Homepage ── */

.tagline {
  color: var(--mute);
  font-size: 1.0625rem;
  margin-top: 0.25rem;
}

.apps {
  margin-top: 3.5rem;
}

.app-card {
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
}

.app-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.app-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.125rem;
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.app-desc {
  color: var(--mute);
  font-size: 0.9375rem;
  margin: 0;
}

.app-status {
  font-size: 0.8125rem;
  color: var(--mute);
  margin-top: 0.5rem;
}

/* ── Support / Privacy ── */

.page-title {
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--mute);
  margin-bottom: 2.5rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-q {
  font-weight: 500;
  margin-bottom: 0.35rem;
}

code {
  font-family: ui-monospace, 'Courier New', monospace;
  font-size: 0.875em;
  background: var(--rule);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
