/* content echo — landing styles */
:root {
  --ce-blue: #1FA9F0;        /* echo arcs / accent (cyan-blue) */
  --ce-blue-dark: #0d8acc;
  --ce-navy: #1E2A4A;        /* mark + wordmark dark navy */
  --ce-navy-deep: #131c33;
  --ce-ink: #1E2A4A;
  --ce-paper: #FFFFFF;
  --ce-paper-2: #F5F7FB;
  --ce-line: rgba(30, 42, 74, 0.12);
  --ce-muted: #6B7689;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--ce-paper);
  color: var(--ce-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ce-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.ce-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ce-blue); display: inline-flex; align-items: center; gap: 10px;
}
.ce-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--ce-blue); display: inline-block;
}

/* Footer */
.ce-footer {
  border-top: 1px solid var(--ce-line);
  padding: 28px 32px;
  font-size: 13px; color: var(--ce-muted);
}
.ce-footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.ce-footer-links { display: flex; gap: 28px; }
.ce-footer a { color: var(--ce-muted); text-decoration: none; transition: color 0.15s ease; }
.ce-footer a:hover { color: var(--ce-ink); }
