/* AITL India — Privacy Policy site styles */
:root {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --text: #1c2733;
  --muted: #5b6875;
  --accent: #0b6bcb;
  --border: #e2e6ea;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12181f;
    --surface: #1a222b;
    --text: #e8edf2;
    --muted: #9aa7b3;
    --accent: #5aa4e8;
    --border: #2a3541;
  }
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

header.site {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

header.site .brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

header.site .brand a {
  color: var(--text);
  text-decoration: none;
}

header.site .tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
}

p, ul, ol {
  margin-bottom: 0.9rem;
}

ul, ol {
  padding-left: 1.4rem;
}

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

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

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  margin-right: 0.35rem;
  vertical-align: middle;
}

/* App list on the index page */
.app-list {
  list-style: none;
  padding: 0;
}

.app-list li {
  margin-bottom: 0.75rem;
}

.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 120ms ease;
}

.app-card:hover {
  border-color: var(--accent);
}

.app-card .app-name {
  font-weight: 600;
}

.app-card .arrow {
  color: var(--muted);
  flex-shrink: 0;
}

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.error-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}
