/* Shared styles for static SEO landing pages (matches homepage brand). */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #dce6f0;
  --blue: #2563eb;
  --cyan: #22d3ee;
  --font:
    "Segoe UI", "Avenir Next", "Helvetica Neue", ui-sans-serif, system-ui,
    sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07101c;
    --surface: #0f1b2e;
    --text: #e8eef7;
    --text-secondary: #8b9bb4;
    --text-muted: #6b7c94;
    --border: rgba(255, 255, 255, 0.1);
  }
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(34, 211, 238, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(37, 99, 235, 0.05),
      transparent 40%
    ),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  padding-top: max(1.5rem, env(safe-area-inset-top));
  padding-bottom: max(3rem, env(safe-area-inset-bottom));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 2rem;
}

.brand img {
  display: block;
}

.wordmark {
  font-weight: 750;
  letter-spacing: -0.035em;
  font-size: 1.15rem;
}

.wm-img {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wm-io {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92em;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

li {
  margin: 0 0 0.4rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 1.5rem 0 0;
  padding: 0.7rem 1.2rem;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.25);
}

.cta:hover {
  background: #1d4ed8;
}

.more {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.more a {
  color: var(--text-muted);
  text-decoration: none;
}

.more a:hover {
  color: var(--blue);
}

.more span {
  color: var(--text-muted);
  margin: 0 0.35rem;
}

kbd {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85em;
  font-family: inherit;
  font-weight: 600;
}
