/* AZ Dezigns — shared site styles */

:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #5a5a5a;
  --accent: #2f6fed;
  --border: #e5e5e5;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

header.site {
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--fg);
  letter-spacing: -0.01em;
}

nav.site a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
}

nav.site a:hover {
  color: var(--accent);
}

h1 {
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
}

p, li {
  color: var(--fg);
}

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.apps-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

footer.site .wrap {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  font-size: 0.95rem;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #fafafa;
}

code {
  background: #f2f2f2;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --fg: #eaeaea;
    --muted: #a0a0a0;
    --accent: #6ea0ff;
    --border: #2a2a2a;
  }
  th {
    background: #1a1a1a;
  }
  code {
    background: #1e1e1e;
  }
}
