:root {
  --bg: #0c0f14;
  --surface: #141a22;
  --border: #243041;
  --text: #e8eef6;
  --muted: #9aa8b8;
  --accent: #5b9fd4;
  --accent-2: #3d7eae;
  --max: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(12, 15, 20, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 1.1rem;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
nav a:hover { color: var(--text); }

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

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 38rem;
}


.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 0.45rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn.primary {
  background: var(--accent);
  color: #061018;
}
.btn.primary:hover { background: #74b3e0; }
.btn.ghost {
  border-color: var(--border);
  color: var(--text);
}
.btn.ghost:hover { border-color: var(--muted); }

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

h2 {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.grid.two {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid.two { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 1.15rem 1.2rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.fits {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fits li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.steps li { margin-bottom: 0.55rem; }
.steps strong { color: var(--text); }

.creds {
  margin-top: 1.75rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--surface);
}
.creds p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.95rem; }
.muted { color: var(--muted) !important; font-size: 0.88rem !important; }

.contact .contact-lines {
  font-size: 1.2rem;
  margin: 1rem 0 0;
  line-height: 1.7;
}
.contact a {
  color: var(--accent);
  text-decoration: none;
}
.contact a:hover { text-decoration: underline; }

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}
