/* Shared styles for Privacy / Terms / Opt-in — matches echodesk.us landing. */
:root {
  color-scheme: light;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --ink: #151821;
  --muted: #626873;
  --line: #e6e0da;
  --brand: #174061;
  --brand-2: #2f9c9d;
  --brand-soft: #e6f3f2;
  --max: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.94);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.meta {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  padding: 28px 28px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(32, 36, 42, 0.06);
}

h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.card > h2:first-child {
  margin-top: 0;
}

p,
ul {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.45rem;
}

strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-box {
  margin: 1.5rem 0 1rem;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
  color: var(--ink);
}

.contact-box a {
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 640px) {
  .wrap {
    padding: 32px 0 48px;
  }

  .card {
    padding: 22px 18px 4px;
  }
}
