:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-card: #ffffff;
  --text: #14181f;
  --text-muted: #5b6474;
  --border: #e3e6ec;
  --accent: #2f6fed;
  --accent-soft: #eef3fe;
  --warm: #b8642a;
  --warm-soft: #fdf3ec;
  --radius: 14px;
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

nav.site a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 22px;
  font-size: 15px;
}

nav.site a:hover,
nav.site a[aria-current='page'] {
  color: var(--accent);
}

/* hero */
.hero {
  padding: 84px 0 64px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 18ch;
}

.hero p.lede {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.eyebrow.warm {
  color: var(--warm);
  background: var(--warm-soft);
}

/* sections */
section {
  padding: 56px 0;
}

section.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: clamp(24px, 3.2vw, 31px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

h3 {
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
}

.muted {
  color: var(--text-muted);
}

/* product cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 22px;
}

.card p {
  color: var(--text-muted);
  flex: 1;
}

.card a.more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.card a.more:hover {
  text-decoration: underline;
}

.status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.status.live {
  color: #1a7a45;
  background: #e8f6ee;
}

.status.dev {
  color: var(--warm);
  background: var(--warm-soft);
}

/* steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}

.steps li {
  counter-increment: step;
  padding-left: 52px;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
}

.steps.warm li::before {
  background: var(--warm-soft);
  color: var(--warm);
}

/* misc */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
}

.prose {
  max-width: 68ch;
}

.tech {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech li {
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 13px;
  background: var(--bg-card);
}

/* profile facts */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 34px;
  margin: 28px 0 0;
}

.facts dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.facts dd {
  margin: 0;
  font-size: 17px;
}

a.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  margin-top: 8px;
}

a.cta:hover {
  filter: brightness(0.94);
}

a.inline {
  color: var(--accent);
}

/* footer */
footer.site {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 15px;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer.site a {
  color: var(--text-muted);
}

@media (max-width: 620px) {
  .hero {
    padding: 56px 0 40px;
  }
  nav.site a {
    margin-left: 0;
    margin-right: 18px;
  }
  header.site .wrap {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
