/*
 * One stylesheet, no framework and no JavaScript.
 *
 * A page whose only job is to say what this is and how to make contact does not
 * need a build step, and a marketing site that cannot be edited without one
 * stops being edited.
 */
:root {
  --ink: #10131c;
  --muted: #5b6478;
  --line: #e3e6ee;
  --brand: #3b5bdb;
  --brand-2: #1c7ed6;
  --bg: #ffffff;
  --panel: #f7f8fb;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8eaf2; --muted: #9aa3b8; --line: #262b39;
    --bg: #0c0e14; --panel: #141822;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 62rem; margin: 0 auto; padding: 0 1.25rem; }
a { color: var(--brand); }

.top { border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 650; color: var(--ink); text-decoration: none; }
/* The mark drawn in CSS rather than fetched: one less request for one square. */
.mark {
  width: 22px; height: 22px; border-radius: 6px; position: relative;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.mark::before, .mark::after { content: ''; position: absolute; background: #fff; border-radius: 2px; }
.mark::before { left: 9px; top: 3px; width: 3px; height: 16px; }
.mark::after { top: 9px; left: 3px; height: 3px; width: 16px; }

.cta {
  display: inline-block; padding: .5rem .9rem; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; text-decoration: none; font-weight: 600; font-size: .9rem;
}
.cta:hover { filter: brightness(1.08); }
.cta.big { padding: .7rem 1.2rem; font-size: 1rem; }

.hero { padding: 5rem 1.25rem 3rem; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); max-width: 44rem; margin: 0 0 2rem; }
.actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.note { color: var(--muted); font-size: .9rem; }

.panels { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); padding-bottom: 3rem; }
.panels article { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem; }
.panels h2 { font-size: 1.05rem; margin: 0 0 .5rem; }
.panels p { margin: 0; color: var(--muted); font-size: .95rem; }

.why { border-top: 1px solid var(--line); padding-top: 3rem; padding-bottom: 3rem; }
.why h2, .honest h2 { font-size: 1.4rem; margin: 0 0 1.5rem; }
.cols { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.cols h3 { font-size: 1rem; margin: 0 0 .5rem; }
.cols p { margin: 0; color: var(--muted); font-size: .95rem; }

.honest { border-top: 1px solid var(--line); padding-top: 3rem; padding-bottom: 4rem; }
.honest p { color: var(--muted); max-width: 46rem; }

footer { border-top: 1px solid var(--line); padding: 1.5rem 1.25rem; color: var(--muted); font-size: .9rem; }
footer p { margin: 0; }
