:root {
  --ink: #17181a;
  --secondary: #5c616a;
  --tertiary: #8b909a;
  --line: #eceef1;
  --mute: #f4f5f7;
  --action: #155eef;
  --dot: #d0d3d9;
  --white: #ffffff;
  --shadow: 0 4px 6px hsla(0, 0%, 0%, 0.2);
  --sans: "Inter", system-ui, sans-serif;
  --display: "Inter Tight", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.nav,
.hero,
.product,
.capabilities,
.how,
.cta,
.footer {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 960px) {
  .nav,
  .hero,
  .product,
  .capabilities,
  .how,
  .cta,
  .footer {
    padding-left: 128px;
    padding-right: 128px;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--ink);
}

.nav-links,
.footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.footer a,
.footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--secondary);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--secondary);
}

.eyebrow.accent {
  color: var(--action);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

h1 {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 44px;
  color: var(--ink);
}

@media (min-width: 960px) {
  h1 {
    font-size: 48px;
    line-height: 52px;
  }
}

.lede {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--secondary);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-accent {
  height: 36px;
  padding: 0 16px;
  background: var(--action);
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  align-self: flex-start;
  border: 0;
}

.product {
  padding-bottom: 64px;
}

.canvas {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--mute);
}

.chrome {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  gap: 12px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--dot);
  flex-shrink: 0;
}

.chrome-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 16px;
  color: var(--tertiary);
}

.stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
}

.card,
.prompt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 8px;
}

.card {
  width: 320px;
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--action);
}

.prompt {
  width: 360px;
  max-width: 100%;
  padding: 16px;
  gap: 8px;
  border: 1px solid var(--line);
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--secondary);
}

.card h2,
.capabilities h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 30px;
}

.card p,
.prompt p:last-child {
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary);
}

.prompt p:last-child {
  color: var(--ink);
}

.capabilities {
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.capabilities .eyebrow {
  padding-bottom: 32px;
}

.capabilities ol {
  list-style: none;
}

.capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.capabilities li:last-child {
  border-bottom: 1px solid var(--line);
}

.idx {
  width: 48px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: var(--action);
}

.capabilities li div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}

.capabilities p,
.how p,
.cta p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary);
}

.how {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 96px;
  padding-bottom: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 960px) {
  .steps {
    flex-direction: row;
  }

  .steps article {
    flex: 1;
  }
}

.steps article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how .idx {
  width: auto;
  line-height: 20px;
}

.how h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 24px;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--mute);
}

@media (min-width: 960px) {
  .cta {
    flex-direction: row;
    align-items: center;
  }
}

.cta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}

.cta h2 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 36px;
}

.cta .btn {
  flex-shrink: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
}

.footer .wordmark {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
