/* Axolve LLC - entity site. Plain CSS, no build step, no dependencies. */

:root {
  --bg: #ffffff;
  --fg: #15171c;
  --muted: #5b6270;
  --faint: #8b93a1;
  --rule: #e4e7eb;
  --panel: #f7f8fa;
  --link: #1f4fd8;
  --accent: #0f766e;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1013;
    --fg: #e7e9ed;
    --muted: #9ba2ae;
    --faint: #737b88;
    --rule: #242830;
    --panel: #161a1f;
    --link: #7ba3ff;
    --accent: #5eead4;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- header ---- */

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

.site-head .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.mark {
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  margin: 0;
}

.mark a { color: inherit; text-decoration: none; }

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

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

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

/* ---- sections ---- */

.hero { padding: 4.5rem 0 3.5rem; }

h1 {
  font-size: 2.05rem;
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  max-width: 22ch;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0;
  max-width: 46ch;
}

section { padding: 3rem 0; border-top: 1px solid var(--rule); }

.section-label {
  font-size: 0.76rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
  margin: 0 0 1.75rem;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ---- product ---- */

.product-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.product-head h2 {
  font-size: 1.4rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0;
}

.badge {
  font-size: 0.7rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

.product-body { max-width: 60ch; }
.product-body p { color: var(--muted); }

.traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2rem;
}

.trait {
  background: var(--panel);
  padding: 1.15rem 1.1rem;
}

.trait h3 {
  font-size: 0.9rem;
  font-weight: 650;
  margin: 0 0 0.35rem;
}

.trait p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 34rem) {
  .traits { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  .hero { padding: 3rem 0 2.5rem; }
}

/* ---- footer ---- */

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

.site-foot .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  padding-bottom: 3rem;
  font-size: 0.875rem;
  color: var(--faint);
}

.site-foot a { color: var(--faint); }
.site-foot a:hover { color: var(--fg); }

/* ---- long-form legal pages ---- */

.legal h1 { font-size: 1.75rem; max-width: none; }

.legal h2 {
  font-size: 1.02rem;
  font-weight: 650;
  margin: 2.25rem 0 0.6rem;
}

.legal ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal li { margin-bottom: 0.45rem; }
.legal section { border-top: 0; padding: 0 0 3rem; }

.updated {
  color: var(--faint);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
