/* Pursuit Labs company site.
   Brand: violet #9C6BFF, blue #5B8CFF, ink #171A21, paper #F4F6FB.
   Gradient always runs left to right, blue into violet, per the logo kit. */

:root {
  --ink: #171A21;
  --ink-2: #1E222B;
  --line: #2A2F3B;
  --paper: #F4F6FB;
  --muted: #8B93A3;
  --blue: #5B8CFF;
  --violet: #9C6BFF;
  --grad: linear-gradient(90deg, var(--blue), var(--violet));
  --max: 1080px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* A soft wash of the brand gradient behind the top of the page. */
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 60vh;
  background:
    radial-gradient(60% 70% at 18% 0%, rgba(91, 140, 255, .18), transparent 70%),
    radial-gradient(55% 65% at 82% 6%, rgba(156, 107, 255, .16), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 24px;
  top: 12px;
  z-index: 10;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
}

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand { display: inline-flex; }
.brand img {
  display: block;
  height: 28px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { color: var(--paper); }

/* Hero */

.hero { padding: 64px 0 24px; }

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--violet);
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 6.4vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.028em;
  max-width: 15ch;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 18px;
  font-size: 18px;
  color: #C3C9D6;
  max-width: 62ch;
}

/* Sections */

.sect {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.sect-head { margin-bottom: 32px; }

h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
}

/* Product cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px 24px;
}

.card::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad);
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.015em;
}

.card .one {
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--paper);
}

.card p {
  margin: 0 0 14px;
  font-size: 16px;
  color: #AEB6C4;
}

.meta {
  font-size: 14px !important;
  color: var(--muted) !important;
  margin-top: auto !important;
}

.go {
  margin-top: 14px;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 1px solid rgba(156, 107, 255, .5);
  padding-bottom: 2px;
}
.go::after { content: " \2192"; color: var(--violet); }
.go:hover { border-bottom-color: var(--violet); }

/* Company */

.two {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.facts {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  text-align: right;
}

.facts span {
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  flex: none;
}

/* Call to action */

.btn {
  display: inline-block;
  margin-top: 6px;
  padding: 13px 24px;
  border-radius: 10px;
  background: var(--grad);
  color: #0F1218;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.btn:hover { filter: brightness(1.08); }

/* Contact */

.big {
  margin: 8px 0 12px;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.big a {
  text-decoration: none;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.big a:hover { text-decoration: underline; text-decoration-color: var(--violet); }

#contact .meta { color: var(--muted); font-size: 15px; margin: 0; }

/* Footer */

.foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
}

.footin {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  font-size: 14px;
  color: var(--muted);
}

.footin p { margin: 0; }

.footleft { display: flex; flex-direction: column; gap: 8px; }

/* The veteran owned mark. Small caps with the brand gradient as a dot, so it
   reads as a credential rather than as another line of small print. */
.vet {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C3C9D6;
}
.vet::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

.links { display: flex; flex-wrap: wrap; gap: 20px; }
.links a { color: var(--muted); text-decoration: none; }
.links a:hover { color: var(--paper); }

/* Narrow screens */

@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { padding: 20px 0; flex-wrap: wrap; gap: 14px; }
  .nav ul { gap: 20px; }
  .hero { padding: 40px 0 8px; }
  h1 { max-width: none; }
  .sect { padding: 52px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
