/* Vercel-grade light design system — authored for Asquad B2B export templates.
   Design DNA: vercel.com / Geist design system (DESIGN.md): pure white #ffffff canvas,
   near-black #171717 text, shadow-as-border (0px 0px 0px 1px) instead of CSS borders,
   Geist-style aggressive negative letter-spacing, three-weight system (400/500/600),
   achromatic palette with functional accent colors only (Develop Blue / Preview Pink /
   Ship Red used solely to mark pipeline stages). NOT a copy of Vercel's content —
   colour/type/layout language only. Geist is loaded from Google Fonts. */
:root {
  /* canvas + ink */
  --bg: #ffffff;
  --surface: #ffffff;
  --tint: #fafafa;
  --ink: #171717; /* primary text/heading — near-black, micro-warm */
  --gray-600: #4d4d4d; /* secondary / body copy */
  --gray-500: #666666; /* tertiary */
  --gray-400: #808080; /* placeholder / muted */
  --gray-100: #ebebeb; /* hard divider line */
  --gray-50: #fafafa;
  /* functional accents (pipeline only) */
  --develop: #0a72ef; /* develop blue */
  --preview: #de1d8d; /* preview pink */
  --ship: #ff5b4f; /* ship red */
  --link: #0072f5;
  --focus: hsla(212, 100%, 48%, 1);
  --badge-bg: #ebf5ff;
  --badge-ink: #0068d6;
  /* shadow-as-border system */
  --ring: rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  --ring-light: rgb(235, 235, 235) 0px 0px 0px 1px;
  --lift: rgba(0, 0, 0, 0.04) 0px 2px 2px;
  --card-shadow: rgba(0, 0, 0, 0.08) 0px 0px 0px 1px, rgba(0, 0, 0, 0.04) 0px 2px 2px,
    rgba(0, 0, 0, 0.04) 0px 8px 8px -8px, #fafafa 0px 0px 0px 1px;
  --maxw: 1200px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
  font-feature-settings: "liga" 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.mono {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, "Courier New",
    monospace;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
/* Mono technical eyebrow — the "developer console" voice */
.eyebrow {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ───────── buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--ring-light);
  transition:
    background 0.15s,
    box-shadow 0.15s,
    color 0.15s;
  cursor: pointer;
}
.btn:hover {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 0px 0px 1px;
}
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover {
  background: #383838;
  box-shadow: none;
}
.btn-arrow::after {
  content: "→";
  transition: transform 0.15s;
}
.btn-arrow:hover::after {
  transform: translateX(2px);
}

/* pill badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 9999px;
  background: var(--badge-bg);
  color: var(--badge-ink);
  letter-spacing: 0;
}
.badge.neutral {
  background: var(--gray-50);
  color: var(--gray-600);
  box-shadow: var(--ring);
}
.badge .dotpulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--develop);
}

/* ───────── nav ───────── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 17px;
  color: var(--ink);
}
.brand .mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ink);
  position: relative;
}
.brand .mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: conic-gradient(from 220deg at 50% 50%, #171717 0deg, #3d3d3d 140deg, #171717 280deg);
}
.brand img {
  height: 24px;
  width: auto;
  border-radius: 4px;
}
.navlinks {
  display: flex;
  gap: 28px;
}
.navlinks a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.15s;
}
.navlinks a:hover {
  color: var(--ink);
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ───────── hero ───────── */
.hero {
  position: relative;
  padding: 112px 0 96px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  /* barely-there pastel atmospheric wash */
  content: "";
  position: absolute;
  inset: -30% 0 auto;
  height: 620px;
  background: radial-gradient(
    55% 60% at 50% 0%,
    rgba(10, 114, 239, 0.06),
    rgba(222, 29, 141, 0.04) 45%,
    transparent 72%
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.hero .badge {
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em; /* aggressive negative tracking — the Geist signature */
  color: var(--ink);
  max-width: 16ch;
  margin: 0 auto 24px;
}
.hero .sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--gray-600);
  max-width: 52ch;
  margin: 0 auto 38px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cta-note {
  font-size: 13px;
  color: var(--gray-500);
}

/* ───────── trust bar ───────── */
.trust {
  margin-top: 76px;
  padding-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 0px 0px inset;
}
.trust .lbl {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 26px;
}
.trust .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.trust .chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--ring);
  background: var(--surface);
}

/* ───────── sections ───────── */
section.block {
  padding: 104px 0;
}
.divider {
  box-shadow: var(--gray-100) 0px 1px 0px 0px;
}
.sec-head {
  max-width: 60ch;
  margin-bottom: 56px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 16px 0 16px;
  color: var(--ink);
}
.sec-head p {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.grid {
  display: grid;
  gap: 24px;
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}

/* feature cards — shadow stack, no CSS border */
.card {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.06) 0px 4px 8px,
    rgba(0, 0, 0, 0.04) 0px 12px 16px -8px,
    #fafafa 0px 0px 0px 1px;
}
.ic {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  box-shadow: var(--ring);
  color: var(--ink);
  margin-bottom: 20px;
}
.ic svg {
  width: 20px;
  height: 20px;
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ───────── pipeline (the distinctive Vercel component) ───────── */
.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.pipe-step {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}
.pipe-step .step-label {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pipe-step .step-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.pipe-step.develop .step-label {
  color: var(--develop);
}
.pipe-step.preview .step-label {
  color: var(--preview);
}
.pipe-step.ship .step-label {
  color: var(--ship);
}
.pipe-step h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 16px 0 8px;
  color: var(--ink);
}
.pipe-step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ───────── metric cards ───────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ring);
}
.metric {
  padding: 36px 28px;
  box-shadow: var(--gray-100) 1px 0 0 0;
}
.metric:last-child {
  box-shadow: none;
}
.metric .n {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--i
nk);
}
.metric .n em {
  font-style: normal;
  color: var(--develop);
}
.metric .l {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 12px;
  line-height: 1.4;
}

/* ───────── product cards ───────── */
.prod {
  display: block;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s;
}
.prod:hover {
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.06) 0px 4px 8px,
    rgba(0, 0, 0, 0.04) 0px 12px 16px -8px,
    #fafafa 0px 0px 0px 1px;
}
.prod .img {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(10, 114, 239, 0.06), transparent 60%),
    var(--gray-50);
  box-shadow: var(--gray-100) 0px -1px 0px 0px inset;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prod .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod .img .ph {
  width: 56%;
  height: 56%;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #ededed);
  box-shadow:
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.05) 0px 12px 24px -12px;
  position: relative;
}
.prod .img .ph::after {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: 6px;
  box-shadow: var(--ring);
}
.prod .meta {
  padding: 22px 24px;
}
.prod .tag {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
}
.prod h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
  color: var(--ink);
}
.prod p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}
.prod .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  box-shadow: var(--gray-100) 0px 1px 0px 0px inset;
}
.prod .row .spec {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.prod .row .arrow {
  color: var(--gray-400);
  transition: 0.15s;
}
.prod:hover .row .arrow {
  color: var(--ink);
  transform: translateX(2px);
}

/* empty state */
.empty {
  text-align: center;
  padding: 64px 28px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  background: var(--surface);
}
.empty p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 22px;
}

/* ───────── page header (about/contact/products) ───────── */
.pagehead {
  position: relative;
  padding: 80px 0 40px;
  box-shadow: var(--gray-100) 0px 1px 0px 0px;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 360px;
  background: radial-gradient(50% 60% at 50% 0%, rgba(10, 114, 239, 0.05), transparent 70%);
  pointer-events: none;
}
.pagehead .wrap {
  position: relative;
  z-index: 1;
}
.pagehead h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 14px 0 16px;
  text-align: left;
  letter-spacing: -0.045em;
}
.crumb {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.crumb a:hover {
  color: var(--ink);
}
.prose {
  max-width: 64ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
}
.prose p {
  margin-bottom: 18px;
}
.prose p:last-child {
  margin-bottom: 0;
}

/* ───────── contact ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  background: var(--surface);
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: var(--card-shadow);
}
.field h4 {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.field a,
.field p {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.field a:hover {
  color: var(--link);
}
.field .help {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ───────── product detail ───────── */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail .hero-img {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(10, 114, 239, 0.06), transparent 60%),
    var(--gray-50);
  box-shadow: var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.detail .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail .hero-img .ph {
  width: 56%;
  height: 56%;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #ededed);
  box-shadow:
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.05) 0px 16px 32px -16px;
  position: relative;
}
.detail .hero-img .ph::after {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: 6px;
  box-shadow: var(--ring);
}
.detail h1 {
  font-size: clamp(30px, 3.8vw, 40px);
  text-align: left;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.spectable {
  margin: 28px 0 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ring);
}
.spectable .srow {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  box-shadow: var(--gray-100) 0px 1px 0px 0px;
  font-size: 14px;
}
.spectable .srow:last-child {
  box-shadow: none;
}
.spectable .srow .k {
  color: var(--gray-500);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
}
.spectable .srow .v {
  color: var(--ink);
  font-weight: 500;
}

/* pagination */
.pager {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 56px;
}
.pager .count {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--gray-400);
  padding: 0 8px;
}

/* ───────── final CTA ───────── */
.final {
  position: relative;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 120% at 50% 0%,
    rgba(10, 114, 239, 0.18),
    rgba(222, 29, 141, 0.08) 50%,
    transparent 75%
  );
  pointer-events: none;
}
.final .inner {
  position: relative;
  z-index: 1;
}
.final .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 16px;
}
.final h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}
.final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.final .btn {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.final .btn:hover {
  background: #ebebeb;
  box-shadow: none;
}
.final .btn.ghost {
  background: transparent;
  color: #fff;
  box-shadow: rgba(255, 255, 255, 0.24) 0px 0px 0px 1px;
}
.final .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(255, 255, 255, 0.4) 0px 0px 0px 1px;
}

/* ───────── footer ───────── */
footer {
  box-shadow: var(--gray-100) 0px 1px 0px 0px inset;
  padding: 64px 0 64px;
}
.foot {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot .desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 34ch;
  margin-top: 16px;
}
.foot h5 {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.foot a {
  display: block;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
  transition: color 0.15s;
}
.foot a:hover {
  color: var(--ink);
}
.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  box-shadow: var(--gray-100) 0px 1px 0px 0px inset;
  font-size: 13px;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 12px;
}

/* ───────── responsive ───────── */
@media (max-width: 960px) {
  .g3,
  .pipeline,
  .metrics,
  .foot,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric {
    box-shadow: var(--gray-100) 1px 1px 0 0;
  }
  .detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .navlinks {
    display: none;
  }
  section.block {
    padding: 72px 0;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .g3,
  .g4,
  .pipeline,
  .metrics,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .metric {
    box-shadow: var(--gray-100) 0px 1px 0 0;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 80px 0 64px;
  }
  .final {
    padding: 56px 24px;
  }
}

