:root {
  --ink: #151b30;
  --muted: #686f82;
  --blue: #465bef;
  --line: #e7eaf1;
  --font: "DM Sans", sans-serif;
  --heading: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #667bff;
  outline-offset: 5px;
}
button {
  color: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--heading);
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.site-header {
  height: 88px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #f0f1f7;
  background: #ffffffd9;
}
.nav-wrap {
  max-width: 1320px;
  width: calc(100% - 80px);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading);
  font-weight: 650;
  font-size: 31px;
  letter-spacing: -1.6px;
}
.brand-icon {
  width: 31px;
  height: 39px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.brand-icon img {
  position: absolute;
  width: 44px;
  height: 44px;
  max-width: none;
  left: -7px;
  top: -3px;
}
.brand-dot {
  color: #5272ef;
}
.site-header nav {
  display: flex;
  gap: 31px;
  margin-left: 70px;
}
.site-header nav a,
.login {
  font-size: 14px;
  font-weight: 500;
  color: #505567;
  transition: color 0.2s;
}
.site-header nav a:hover,
.login:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}
.button {
  border: 1px solid #181e31;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: #181e31;
  color: white;
  padding: 17px 24px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 3px 4px #17224808;
}
.button:hover {
  transform: translateY(-2px);
  background: #2b3655;
  box-shadow: 0 7px 18px #17224818;
}
.button > span:last-child {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.button.small {
  font-size: 14px;
  padding: 12px 17px;
  gap: 20px;
  border-radius: 7px;
}
.button-quiet {
  background: #fff9;
  border-color: #d8dcea;
  color: #252c42;
  gap: 10px;
}
.button-quiet:hover,
.button-outline:hover {
  background: #f1f4ff;
}
.button .play-icon {
  font-size: 21px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8faff 60%, #fff 100%);
}
.hero-glow {
  position: absolute;
  top: 180px;
  left: 15%;
  right: 0;
  height: 700px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 60%, #c5edfc87, transparent 50%),
    radial-gradient(ellipse at 30% 65%, #e0d9ff99, transparent 50%);
  filter: blur(20px);
}
.hero-copy {
  text-align: center;
  position: relative;
  padding-top: 57px;
}
.announcement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e1e5f2;
  border-radius: 30px;
  padding: 7px 14px 7px 10px;
  font-size: 12px;
  color: #5a6484;
  background: #fff9;
}
.announcement-icon {
  font-size: 18px;
  color: #5d64d9;
}
.announcement > span:last-child {
  margin-left: 8px;
}
h1 {
  font-weight: 750;
  font-size: clamp(48px, 5.6vw, 79px);
  line-height: 1.09;
  letter-spacing: -4.5px;
  margin-top: 26px;
}
.gradient-text {
  background: linear-gradient(100deg, #4866df 10%, #6858de 55%, #4598d1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-description {
  margin-top: 23px;
  color: #6c7285;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.cta-note {
  font-size: 12px;
  color: #7d8394;
  margin-top: 15px;
}
.product-stage {
  position: relative;
  margin-top: 49px;
}
.stage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #747d94;
  margin-bottom: 12px;
  padding: 0 3px;
}
.stage-caption strong {
  font-weight: 500;
  color: #47506b;
}
.demo-label {
  font-size: 12px;
  letter-spacing: 1.8px;
}
.workspace {
  border: 1px solid #313b53;
  border-radius: 13px;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 262px;
  color: #e6eaf5;
  background: #101725;
  box-shadow:
    0 22px 70px -18px #2f417862,
    0 0 0 7px #ffffff6e;
  overflow: hidden;
  text-align: left;
  min-height: 438px;
}
.workspace-sidebar {
  background: linear-gradient(145deg, #171f30, #121a28);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ffffff0b;
}
.dark-brand {
  font-size: 25px;
  margin-left: 7px;
  letter-spacing: -1px;
  gap: 4px;
}
.dark-brand .brand-icon {
  transform: scale(0.8);
  transform-origin: center;
}
.workspace-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #e5e9f5;
  padding: 23px 7px;
}
.avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: #3a4764;
  color: #c6d4ef;
  border-radius: 8px;
  font-size: 12px;
}
.workspace-name small,
.sidebar-bottom small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #818aa0;
}
.workspace-name > span:last-child {
  margin-left: auto;
}
.sidebar-label {
  font-size: 12px;
  letter-spacing: 1.3px;
  color: #838ca0;
  margin: 7px 10px 11px;
}
.work-selectors {
  display: grid;
  gap: 5px;
}
.work-option {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  background: transparent;
  color: #a9b2c6;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 9px;
  white-space: nowrap;
}
.work-option.active {
  background: #28344d;
  color: #dae5ff;
  border-color: #4b618033;
}
.work-option:hover {
  background: #242e42;
}
.work-option > span:first-child {
  font-size: 17px;
  color: #8b9fce;
  line-height: 1;
}
.work-count {
  margin-left: auto;
  font-size: 12px;
  opacity: 0.7;
}
.sidebar-bottom {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #a3acc1;
  font-size: 12px;
  padding: 15px 8px 0;
}
.connection-icon {
  font-size: 20px;
  color: #849ac7;
}
.workspace-topbar {
  padding: 17px 23px;
  border-bottom: 1px solid #ffffff0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8791a7;
}
.workspace-topbar strong {
  font-weight: 400;
  color: #ced6e8;
}
.workspace-topbar > span > span {
  margin: 0 9px;
  color: #4b556b;
}
.preview-badge {
  font-size: 12px;
  border: 1px solid #ffffff12;
  padding: 3px 7px;
  border-radius: 4px;
}
.workspace-body {
  padding: 24px 24px 18px;
}
.workspace-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #6473a3;
  line-height: 1.5;
}
.workspace-heading .eyebrow {
  font-size: 12px;
  letter-spacing: 1.1px;
  color: #8e9bb8;
}
.workspace-heading h2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin: 7px 0;
}
.workspace-heading p {
  font-size: 12px;
  color: #8f9ab1;
}
.project-symbol {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #a3b4ff;
  background: #4b63cf22;
  font-size: 26px;
  border: 1px solid #617ff42b;
}
.state-card {
  display: flex;
  gap: 11px;
  padding: 13px 14px;
  background: linear-gradient(100deg, #28334d88, #1d293f66);
  border: 1px solid #5a6a902e;
  border-radius: 8px;
  margin: 20px 0;
}
.state-icon {
  font-size: 22px;
  color: #a4b6f6;
  line-height: 1.1;
}
.state-title {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.state-title > span {
  font-size: 12px;
  background: #88a5eb15;
  color: #a7b6d9;
  border-radius: 4px;
  padding: 3px 6px;
  font-weight: 400;
}
.state-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #a3aec5;
  margin-top: 6px;
}
.artifact-heading {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #d5ddeb;
  margin-bottom: 10px;
}
.artifact-heading > span:last-child {
  font-size: 12px;
  color: #8794b1;
}
.count-badge {
  background: #253148;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 5px;
  color: #9aaccd;
}
.artifact-list {
  display: grid;
  gap: 5px;
}
.artifact-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #1c2638;
  border: 1px solid #ffffff05;
  border-radius: 6px;
  text-align: left;
  color: #e0e6f1;
  transition: background 0.2s;
}
.artifact-row:hover {
  background: #27344e;
}
.file-icon {
  width: 29px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #6e82cb25;
  border: 1px solid #8f9ed022;
  border-radius: 5px;
  color: #9eb7ff;
  font-size: 17px;
}
.artifact-text {
  min-width: 0;
}
.artifact-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.artifact-text small {
  display: block;
  color: #8b98b1;
  font-size: 12px;
  margin-top: 3px;
}
.artifact-row .current-badge {
  margin-left: auto;
}
.current-badge {
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 5px;
  background: #50bea315;
  color: #81cbb7;
  display: inline-block;
  white-space: nowrap;
}
.artifact-row .row-arrow {
  color: #71809b;
  font-size: 14px;
  margin-left: 3px;
}
.workspace-note {
  font-size: 12px;
  color: #8897b3;
  margin-top: 12px;
}
.workspace-note span {
  color: #90b9bf;
  margin-right: 5px;
}
.chat-panel {
  padding: 23px 18px;
  border-left: 1px solid #ffffff0a;
  background: linear-gradient(160deg, #192334, #152030);
  display: flex;
  flex-direction: column;
}
.chat-panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #d98e6f13;
  color: #df9d7d;
  font-size: 25px;
  display: grid;
  place-items: center;
}
.chat-panel-heading strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.chat-panel-heading > div > span {
  font-size: 12px;
  color: #919eb4;
  display: block;
  margin-top: 4px;
}
.chat-message {
  padding: 13px 12px;
  font-size: 12px;
  line-height: 1.6;
  border-radius: 8px;
  background: #2b3850;
  color: #d4dced;
  margin-top: 26px;
  margin-left: 13px;
}
.chat-response {
  display: flex;
  gap: 8px;
  margin-top: 21px;
}
.ai-spark {
  font-size: 20px;
  color: #8495bb;
}
.chat-response p {
  color: #b5c0d4;
  font-size: 12px;
  line-height: 1.7;
}
.retrieved-card {
  padding: 13px;
  background: #ffffff05;
  border: 1px solid #55668255;
  border-radius: 7px;
  margin: 15px 0 0 25px;
}
.retrieved-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.retrieved-card .file-icon {
  width: 25px;
  height: 28px;
}
.retrieved-card > strong {
  font-size: 12px;
  display: block;
  margin-top: 12px;
  font-weight: 500;
}
.retrieved-card > span {
  font-size: 12px;
  line-height: 1.7;
  color: #8f9cb5;
  display: block;
  margin-top: 6px;
}
.mini-lines {
  display: grid;
  gap: 5px;
  margin-top: 14px;
}
.mini-lines i {
  height: 3px;
  background: #596b902d;
  width: 100%;
  border-radius: 3px;
}
.mini-lines i:nth-child(2) {
  width: 88%;
}
.mini-lines i:nth-child(3) {
  width: 65%;
}
.chat-footnote {
  font-size: 12px;
  color: #8190ad;
  margin: 18px 0 0 25px;
}
.demo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 0;
}
.demo-controls > span:first-child {
  font-size: 12px;
  color: #7a8398;
  margin-right: 10px;
}
.demo-controls button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  font-size: 12px;
  color: #6d7790;
}
.demo-controls button > span {
  font-size: 12px;
  color: #9ba4ba;
}
.demo-controls button.active {
  background: #fff;
  border-color: #dfe5f2;
  color: #4156bb;
  box-shadow: 0 2px 6px #16376807;
}
.demo-controls button:hover {
  border-color: #cbd4ec;
}
.flow-line {
  width: 25px;
  height: 1px;
  background: #d6deee;
}
.integration-strip {
  text-align: center;
  padding: 51px 0 49px;
  border-bottom: 1px solid var(--line);
}
.integration-strip > p:first-child {
  font-size: 12px;
  color: #7b8193;
}
.integration-logos {
  display: flex;
  justify-content: center;
  gap: 57px;
  align-items: center;
  margin-top: 22px;
}
.integration-logos > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #4d566c;
}
.provider-mark {
  font-size: 25px;
  line-height: 1;
}
.claude {
  color: #c28569 !important;
}
.integration-note {
  font-size: 12px;
  color: #8a91a3;
  margin-top: 20px;
}
.section {
  padding-block: 96px;
}
.section-heading {
  text-align: center;
}
.section-heading h2,
.continuity-copy h2,
.faq-intro h2 {
  font-size: 43px;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -1.9px;
  margin-top: 17px;
}
.section-heading > p:last-child {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 19px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  margin-top: 51px;
}
.step-visual {
  height: 186px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9edf5;
  border-radius: 12px;
  background: #f7f9fe;
  padding: 20px;
  overflow: hidden;
}
.example-bubble {
  font-size: 12px;
  background: #fff;
  padding: 11px 16px;
  border: 1px solid #e4e8f1;
  border-radius: 8px 8px 2px 8px;
  margin-left: 32px;
  box-shadow: 0 4px 12px #283c6b04;
}
.saved-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #e3e9f5;
  border-radius: 8px;
  padding: 12px;
  margin: 15px 20px 0 0;
  box-shadow: 0 4px 12px #283c6b04;
  font-size: 12px;
}
.saved-chip .file-icon,
.search-result .file-icon {
  background: #edf1ff;
  color: #6d82dd;
  border-color: #d9e1fa;
}
.saved-chip small,
.search-result small {
  display: block;
  font-size: 12px;
  color: #8992a9;
  margin-top: 4px;
}
.check-circle {
  background: #e8f5f1;
  color: #669c91;
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 12px;
  margin-left: 4px;
}
.example-search {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  background: #fff;
  padding: 11px 16px;
  border: 1px solid #d7dff0;
  border-radius: 7px;
  width: 94%;
  color: #687796;
}
.example-search > span {
  font-size: 21px;
  line-height: 1;
}
.search-result {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  padding: 13px;
  background: #fff;
  border: 1px solid #e4e9f3;
  border-radius: 7px;
  width: 94%;
  margin-top: 10px;
}
.search-result .current-badge {
  color: #548e7d;
  background: #eaf4ef;
  margin-left: auto;
  font-size: 12px;
  padding: 3px 5px;
}
.reuse-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tool-tile {
  height: 48px;
  width: 48px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #e2e7f0;
  border-radius: 11px;
  font-size: 30px;
  color: #647389;
  box-shadow: 0 5px 12px #26366008;
}
.logo-tile {
  height: 60px;
  width: 60px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #dbe3f7;
  border-radius: 14px;
  box-shadow: 0 6px 25px #6577df1c;
}
.flow-connector {
  height: 1px;
  background: linear-gradient(90deg, #b6dbe9, #bfb7ef);
  width: 28px;
}
.reuse-caption {
  font-size: 12px;
  color: #7d8aa1;
  margin-top: 20px;
}
.step-number {
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: 600;
  color: #8590a7;
  margin-top: 27px;
}
.step-card h3 {
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-top: 11px;
  font-weight: 650;
}
.step-card > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
}
.continuity-section {
  background: #f8faff;
  border-block: 1px solid #eef1f8;
  padding-block: 80px;
}
.continuity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.continuity-copy h2 {
  font-size: 40px;
  margin-bottom: 25px;
}
.continuity-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  margin-top: 15px;
}
.value-list {
  padding: 0;
  list-style: none;
  margin: 27px 0 0;
  display: grid;
  gap: 15px;
  font-size: 13px;
  color: #4f5973;
}
.value-list li {
  display: flex;
  gap: 12px;
  align-items: center;
}
.value-list span {
  color: #667bcd;
  background: #e9effc;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.journey-card {
  background: white;
  border: 1px solid #e0e6f2;
  padding: 27px;
  border-radius: 14px;
  box-shadow: 0 12px 40px #3d56840a;
}
.journey-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #edf0f5;
  padding-bottom: 22px;
}
.journey-heading .project-symbol {
  color: #637ae0;
  background: #edf1ff;
  border-color: #e1e7fc;
  width: 40px;
  height: 40px;
}
.journey-heading > div > span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #9099ad;
}
.journey-heading h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
  margin-top: 4px;
}
.journey-count {
  font-size: 12px;
  color: #8c98ad;
  margin-left: auto;
}
.timeline {
  padding-top: 27px;
}
.timeline-item {
  display: flex;
  gap: 15px;
  position: relative;
  padding-bottom: 30px;
}
.timeline-item:not(:last-child):before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: #e6ebf3;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #e6eaf3;
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 22px;
  color: #7d889e;
  background: #fafbfe;
}
.timeline-time {
  font-size: 12px;
  letter-spacing: 1px;
  color: #8d96a9;
}
.timeline-item h4 {
  font-size: 14px;
  letter-spacing: -0.25px;
  margin-top: 7px;
  font-weight: 650;
}
.timeline-item p {
  color: #8a93a6;
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.6;
}
.artifact-tag {
  display: inline-block;
  font-size: 12px;
  color: #8492b2;
  border: 1px solid #e5eaf4;
  padding: 5px 8px;
  border-radius: 4px;
  margin-top: 10px;
  background: #fafbfe;
}
.today-icon {
  background: #eef1ff;
  color: #7d8de0;
}
.timeline-item .current-badge {
  color: #589886;
  background: #edf7f3;
  margin-top: 10px;
  font-size: 12px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 47px;
}
.price-card {
  padding: 28px 26px 20px;
  border: 1px solid #e4e8f1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.free-plan {
  border-color: #a9baf4;
  background: linear-gradient(150deg, #f6f8ff, #fff 70%);
  box-shadow: 0 5px 25px #526bdb0c;
  position: relative;
}
.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-top h3 {
  font-size: 20px;
  letter-spacing: -0.6px;
}
.plan-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  background: #e8edff;
  color: #5d70b8;
  padding: 5px 8px;
  border-radius: 4px;
}
.coming-badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #8a94a7;
  background: #f2f4f8;
  padding: 5px 7px;
  border-radius: 4px;
}
.price-card > .plan-top + p {
  font-size: 12px;
  color: #7e8698;
  margin-top: 11px;
  line-height: 1.6;
}
.price {
  font-family: var(--heading);
  font-weight: 650;
  font-size: 45px;
  letter-spacing: -2px;
  margin-top: 25px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price > span:not(.price-amount) {
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
  color: #9198a9;
}
.price-description {
  font-size: 12px;
  color: #848da2;
  line-height: 1.6;
  margin-top: 9px;
  min-height: 34px;
}
.price-card .button {
  width: 100%;
  padding: 13px 16px;
  justify-content: space-between;
  border-radius: 7px;
  font-size: 12px;
  margin-top: 15px;
}
.free-plan .button {
  background: #5269dc;
  border-color: #5269dc;
}
.free-plan .button:hover {
  background: #3c53c5;
}
.button-outline {
  color: #4e5b78;
  border-color: #dae0ee;
  background: #fff;
}
.price-card ul {
  list-style: none;
  margin: 25px 0 30px;
  padding: 0;
  display: grid;
  gap: 15px;
  font-size: 12px;
  color: #6b758c;
}
.price-card li {
  display: flex;
  gap: 9px;
  line-height: 1.5;
}
.price-card li:before {
  content: "✓";
  color: #8194c5;
}
.plan-foot {
  font-size: 12px;
  color: #939db2;
  border-top: 1px solid #ebeff6;
  padding-top: 16px;
  margin-top: auto;
}
.free-plan .plan-foot {
  color: #6375b4;
}
.pricing-note {
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: #8c94a6;
  margin-top: 23px;
}
.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 90px;
  padding-block: 76px 96px;
}
.faq-intro h2 {
  font-size: 34px;
}
.faq-list details {
  border-bottom: 1px solid #e8ecf3;
}
.faq-list details:first-child {
  border-top: 1px solid #e8ecf3;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 14px;
  color: #424d65;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 20px;
  color: #8c97af;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 13px;
  line-height: 1.85;
  color: #7c8599;
  padding: 0 25px 21px 0;
}
.closing-section {
  position: relative;
  overflow: hidden;
  background: #111a31;
  text-align: center;
  color: white;
}
.closing-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 130%, #4655a777, transparent 70%);
}
.closing-content {
  position: relative;
  padding-block: 58px 63px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.large-logo {
  transform: scale(1.25);
  margin-bottom: 26px;
}
.closing-content .eyebrow {
  color: #8192c0;
  font-size: 12px;
}
.closing-content h2 {
  font-size: 43px;
  letter-spacing: -1.7px;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 17px;
}
.closing-content > p:not(.eyebrow) {
  color: #9ba8c4;
  font-size: 14px;
  margin-top: 17px;
  line-height: 1.7;
}
.button-white {
  background: #fff;
  color: #253251;
  border-color: #fff;
  padding: 15px 21px;
  gap: 28px;
  margin-top: 27px;
  font-size: 13px;
}
.button-white:hover {
  background: #e8edff;
}
.closing-note {
  font-size: 12px;
  color: #8999bd;
  margin-top: 14px;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 23px;
  min-height: 110px;
}
.site-footer .brand {
  font-size: 24px;
}
.site-footer .brand-icon {
  transform: scale(0.8);
  margin-right: -5px;
}
.site-footer > p {
  font-size: 12px;
  color: #8e96a9;
}
.site-footer nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
  font-size: 12px;
  color: #7a849a;
}
.copyright {
  font-size: 12px;
  color: #a1a9ba;
  margin-left: 25px;
}
.artifact-dialog {
  width: min(550px, calc(100% - 32px));
  border: 1px solid #e3e8f1;
  border-radius: 16px;
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 30px 100px #10224433;
  max-height: 85vh;
}
.artifact-dialog::backdrop {
  background: #111d3c66;
  backdrop-filter: blur(5px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.dialog-close {
  border: 0;
  background: #f1f4fa;
  font-size: 24px;
  border-radius: 6px;
  width: 34px;
  height: 34px;
}
.artifact-dialog .current-badge {
  background: #e8f4ee;
  color: #397661;
  font-size: 12px;
}
.artifact-dialog h2 {
  font-size: 27px;
  margin-top: 15px;
  letter-spacing: -1px;
}
.dialog-meta {
  font-size: 12px;
  color: #8893a7;
  margin: 12px 0 22px;
}
.artifact-dialog h3 {
  font-size: 15px;
  margin-top: 20px;
}
.artifact-dialog p,
.artifact-dialog li {
  font-size: 14px;
  line-height: 1.8;
  color: #67738c;
}
.artifact-dialog ul {
  padding-left: 20px;
}
.dialog-footer {
  border-top: 1px solid #e5eaf2;
  margin-top: 23px;
  padding-top: 17px;
  font-size: 12px;
  color: #8591a9;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  z-index: 100;
  background: white;
  padding: 12px;
  border: 2px solid #5269dc;
}
.skip-link:focus {
  top: 15px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1500px) {
  h1 {
    font-size: 80px;
  }
  .hero-copy {
    padding-top: 68px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .nav-wrap {
    width: calc(100% - 56px);
  }
  .site-header nav {
    gap: 23px;
    margin-left: 20px;
  }
  .workspace {
    grid-template-columns: 175px minmax(0, 1fr) 220px;
  }
  .workspace-sidebar {
    padding-inline: 9px;
  }
  .work-option {
    font-size: 12px;
    gap: 7px;
    padding-inline: 7px;
  }
  .workspace-name {
    font-size: 12px;
  }
  .workspace-body {
    padding: 22px 18px 18px;
  }
  .chat-panel {
    padding: 22px 14px;
  }
  .workspace-heading h2 {
    font-size: 23px;
  }
  .artifact-heading > span:last-child {
    font-size: 12px;
  }
  .artifact-row {
    padding: 9px;
  }
  .artifact-text strong {
    font-size: 12px;
  }
  .artifact-text small {
    font-size: 12px;
  }
  .artifact-row .current-badge {
    font-size: 12px;
  }
  .continuity-grid {
    gap: 50px;
  }
  .steps-grid {
    gap: 23px;
  }
  .step-card h3 {
    font-size: 16px;
  }
  .step-visual {
    padding: 13px;
  }
  .pricing-grid {
    gap: 15px;
  }
  .price-card {
    padding: 24px 20px 20px;
  }
  .price {
    font-size: 40px;
  }
  .price > span:not(.price-amount) {
    font-size: 12px;
  }
  .price-card ul {
    font-size: 12px;
  }
  .faq-section {
    gap: 55px;
  }
  .site-footer {
    gap: 13px;
  }
  .copyright {
    margin-left: 10px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 75px;
  }
  .site-header nav {
    gap: 18px;
    margin-left: 0;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .nav-actions {
    gap: 17px;
  }
  .login {
    display: none;
  }
  .brand {
    font-size: 27px;
  }
  .hero-copy {
    padding-top: 45px;
  }
  h1 {
    font-size: 62px;
    letter-spacing: -3.4px;
  }
  .hero-description {
    font-size: 16px;
  }
  .workspace {
    grid-template-columns: 165px minmax(0, 1fr);
  }
  .chat-panel {
    display: none;
  }
  .workspace {
    min-height: 420px;
  }
  .artifact-text strong {
    font-size: 12px;
  }
  .artifact-text small {
    font-size: 12px;
  }
  .workspace-heading .eyebrow {
    font-size: 12px;
  }
  .workspace-body {
    padding: 22px;
  }
  .workspace-note {
    font-size: 12px;
  }
  .integration-logos {
    gap: 30px;
  }
  .integration-logos > span {
    font-size: 15px;
  }
  .provider-mark {
    font-size: 22px;
  }
  .section {
    padding-block: 75px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .steps-grid {
    gap: 19px;
  }
  .step-visual {
    height: 158px;
    padding: 9px;
  }
  .example-bubble {
    font-size: 12px;
    padding: 9px;
    margin-left: 0;
  }
  .saved-chip {
    font-size: 12px;
    margin-right: 0;
    gap: 5px;
    padding: 8px;
  }
  .saved-chip small {
    font-size: 12px;
  }
  .saved-chip .file-icon {
    width: 22px;
    height: 26px;
    font-size: 13px;
  }
  .check-circle {
    margin-left: 0;
    width: 13px;
    height: 13px;
    font-size: 12px;
  }
  .example-search {
    font-size: 12px;
    padding: 8px;
  }
  .search-result {
    padding: 7px;
    gap: 5px;
    font-size: 12px;
    flex-wrap: wrap;
  }
  .search-result .file-icon {
    width: 22px;
    height: 26px;
    font-size: 13px;
  }
  .search-result small {
    font-size: 12px;
  }
  .search-result .current-badge {
    display: none;
  }
  .tool-tile {
    width: 37px;
    height: 37px;
    font-size: 23px;
  }
  .logo-tile {
    width: 45px;
    height: 49px;
  }
  .flow-connector {
    width: 12px;
  }
  .reuse-caption {
    font-size: 12px;
  }
  .step-card h3 {
    font-size: 17px;
    line-height: 1.5;
  }
  .step-card > p {
    font-size: 13px;
  }
  .continuity-grid {
    gap: 35px;
  }
  .continuity-copy h2 {
    font-size: 33px;
  }
  .continuity-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .value-list {
    font-size: 12px;
  }
  .journey-card {
    padding: 20px;
  }
  .journey-heading {
    gap: 8px;
  }
  .journey-heading > div > span {
    font-size: 12px;
  }
  .journey-count {
    display: none;
  }
  .timeline-item {
    gap: 12px;
  }
  .timeline-item h4 {
    font-size: 12px;
  }
  .timeline-item p {
    font-size: 12px;
  }
  .price-card {
    padding: 20px 17px;
  }
  .price-card > .plan-top + p {
    min-height: 39px;
  }
  .price {
    font-size: 34px;
    gap: 4px;
  }
  .price > span:not(.price-amount) {
    font-size: 12px;
  }
  .price-description {
    font-size: 12px;
    min-height: 42px;
  }
  .plan-top h3 {
    font-size: 18px;
  }
  .plan-badge,
  .coming-badge {
    font-size: 12px;
    padding: 4px 5px;
  }
  .price-card .button {
    font-size: 12px;
    padding: 12px;
    gap: 10px;
  }
  .price-card ul {
    font-size: 12px;
    gap: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro h2 {
    font-size: 32px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding-block: 25px;
    row-gap: 10px;
  }
  .site-footer nav {
    margin-left: auto;
  }
  .copyright {
    width: 100%;
    margin-left: 0;
    text-align: right;
  }
  .closing-content h2 {
    font-size: 39px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 25px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .nav-wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    height: 72px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 20px 24px;
    border-bottom: 1px solid #e5eaf5;
    box-shadow: 0 15px 25px #1827520a;
    gap: 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    font-size: 15px;
    padding: 12px;
  }
  .menu-toggle {
    display: flex;
    width: 30px;
    height: 35px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 0;
    padding: 5px;
  }
  .menu-toggle span {
    height: 1.5px;
    width: 20px;
    background: #35415c;
  }
  .nav-actions {
    gap: 17px;
  }
  .button.small {
    font-size: 12px;
    padding: 10px 13px;
    gap: 15px;
  }
  .brand {
    font-size: 28px;
  }
  .hero-copy {
    padding-top: 34px;
  }
  .announcement {
    font-size: 12px;
    gap: 7px;
    padding: 5px 10px;
  }
  .announcement-icon {
    font-size: 16px;
  }
  .announcement > span:last-child {
    margin-left: 3px;
  }
  h1 {
    font-size: clamp(40px, 10.7vw, 61px);
    line-height: 1.12;
    letter-spacing: -2.6px;
    margin-top: 27px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 360px;
    margin-inline: auto;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .button {
    width: 250px;
    padding: 15px 17px;
    font-size: 13px;
    gap: 18px;
  }
  .hero-actions .button-quiet {
    width: 250px;
    background: transparent;
    padding: 13px 16px;
    border-color: transparent;
  }
  .cta-note {
    font-size: 12px;
    margin-top: 9px;
  }
  .product-stage {
    margin-top: 34px;
  }
  .stage-caption {
    font-size: 12px;
    gap: 8px;
  }
  .demo-label {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .workspace {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 11px;
    box-shadow:
      0 16px 40px -10px #2f417840,
      0 0 0 5px #ffffff66;
    min-height: 0;
  }
  .workspace-sidebar {
    padding: 13px 10px 0;
    border: 0;
  }
  .workspace-sidebar .dark-brand,
  .workspace-name,
  .sidebar-label,
  .sidebar-bottom {
    display: none;
  }
  .work-selectors {
    display: flex;
    gap: 4px;
  }
  .work-option {
    padding: 9px 7px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
    gap: 5px;
    white-space: normal;
  }
  .work-option > span:first-child {
    font-size: 13px;
  }
  .work-count {
    display: none;
  }
  .workspace-topbar {
    padding: 14px 17px;
    font-size: 12px;
  }
  .workspace-body {
    padding: 21px 17px 16px;
  }
  .workspace-heading .eyebrow {
    font-size: 12px;
  }
  .workspace-heading h2 {
    font-size: 24px;
  }
  .workspace-heading p {
    font-size: 12px;
  }
  .workspace-heading .project-symbol {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }
  .state-card {
    margin-top: 18px;
    padding: 12px;
  }
  .state-title {
    font-size: 12px;
  }
  .state-title > span {
    font-size: 12px;
  }
  .state-card p {
    font-size: 12px;
  }
  .artifact-heading {
    font-size: 12px;
  }
  .artifact-heading > span:last-child {
    font-size: 12px;
  }
  .artifact-row {
    padding: 10px;
    gap: 8px;
  }
  .artifact-text strong {
    font-size: 12px;
  }
  .artifact-text small {
    font-size: 12px;
  }
  .artifact-row .current-badge {
    font-size: 12px;
  }
  .file-icon {
    width: 26px;
    height: 29px;
    font-size: 16px;
  }
  .workspace-note {
    font-size: 12px;
  }
  .demo-controls {
    gap: 4px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .demo-controls > span:first-child {
    font-size: 12px;
    margin-right: 5px;
  }
  .demo-controls button {
    font-size: 12px;
    padding: 8px 10px;
    gap: 6px;
  }
  .flow-line {
    width: 13px;
  }
  .integration-strip {
    padding: 37px 0;
  }
  .integration-logos {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px 28px;
    justify-content: center;
    justify-items: start;
    margin-top: 22px;
  }
  .integration-logos > span {
    font-size: 15px;
  }
  .integration-logos > span:last-child {
    font-size: 12px;
  }
  .integration-strip > p:first-child {
    font-size: 12px;
  }
  .integration-note {
    font-size: 12px;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading h2 {
    font-size: 33px;
    letter-spacing: -1.5px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
    margin-top: 17px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  .step-visual {
    height: 190px;
    padding: 25px;
  }
  .example-bubble {
    font-size: 12px;
    padding: 12px 17px;
    margin-left: 28px;
  }
  .saved-chip {
    font-size: 12px;
    gap: 10px;
    padding: 12px;
    margin: 14px 15px 0 0;
  }
  .saved-chip small {
    font-size: 12px;
  }
  .saved-chip .file-icon {
    width: 29px;
    height: 32px;
    font-size: 17px;
  }
  .check-circle {
    width: 17px;
    height: 17px;
    font-size: 12px;
    margin-left: 10px;
  }
  .example-search {
    font-size: 12px;
    padding: 12px;
    max-width: 280px;
  }
  .search-result {
    font-size: 12px;
    gap: 10px;
    padding: 13px;
    max-width: 280px;
  }
  .search-result .file-icon {
    width: 29px;
    height: 32px;
    font-size: 17px;
  }
  .search-result small {
    font-size: 12px;
  }
  .search-result .current-badge {
    display: block;
  }
  .tool-tile {
    width: 51px;
    height: 51px;
    font-size: 30px;
  }
  .logo-tile {
    width: 63px;
    height: 65px;
  }
  .flow-connector {
    width: 35px;
  }
  .reuse-caption {
    font-size: 12px;
  }
  .step-number {
    margin-top: 20px;
  }
  .step-card h3 {
    font-size: 21px;
    margin-top: 8px;
  }
  .step-card > p {
    font-size: 14px;
    margin-top: 8px;
  }
  .continuity-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .continuity-copy h2 {
    font-size: 33px;
    margin-bottom: 18px;
  }
  .continuity-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .value-list {
    font-size: 12px;
    gap: 14px;
  }
  .journey-card {
    padding: 24px;
  }
  .journey-heading > div > span {
    font-size: 12px;
  }
  .journey-count {
    display: block;
  }
  .timeline-item h4 {
    font-size: 14px;
  }
  .timeline-item p {
    font-size: 12px;
  }
  .timeline-item {
    padding-bottom: 26px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .price-card {
    padding: 27px;
  }
  .plan-top h3 {
    font-size: 23px;
  }
  .plan-badge,
  .coming-badge {
    font-size: 12px;
    padding: 5px 8px;
  }
  .price-card > .plan-top + p {
    font-size: 14px;
    min-height: 0;
  }
  .price {
    font-size: 48px;
    margin-top: 22px;
    gap: 9px;
  }
  .price > span:not(.price-amount) {
    font-size: 13px;
  }
  .price-description {
    font-size: 12px;
    min-height: 0;
  }
  .price-card .button {
    font-size: 14px;
    padding: 14px 17px;
    margin-top: 22px;
  }
  .price-card ul {
    font-size: 14px;
    margin-top: 24px;
    gap: 13px;
  }
  .plan-foot {
    font-size: 12px;
  }
  .pricing-note {
    font-size: 12px;
    line-height: 1.9;
  }
  .faq-section {
    gap: 27px;
  }
  .faq-intro h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .faq-list summary {
    font-size: 14px;
    padding: 19px 0;
    line-height: 1.6;
  }
  .faq-list details p {
    font-size: 14px;
    padding-right: 12px;
  }
  .closing-content {
    padding-block: 52px;
  }
  .closing-content .eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .closing-content h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
    max-width: 310px;
  }
  .closing-content > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 290px;
  }
  .button-white {
    font-size: 13px;
  }
  .site-footer {
    justify-content: center;
    gap: 10px 18px;
    padding-block: 28px;
  }
  .site-footer > p {
    font-size: 12px;
  }
  .site-footer nav {
    width: 100%;
    justify-content: center;
    margin: 10px 0;
  }
  .copyright {
    text-align: center;
    margin-top: 5px;
  }
  .artifact-dialog {
    padding: 22px;
  }
  .artifact-dialog h2 {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Comfortable reading sizes for the marketing content. */
.step-card > p,
.continuity-copy > p:not(.eyebrow),
.faq-list details p {
  font-size: 16px;
}
.price-card ul,
.price-card > .plan-top + p,
.value-list,
.faq-list summary {
  font-size: 14px;
}
.workspace-name {
  flex-wrap: wrap;
}
.workspace-heading > div {
  min-width: 0;
}
.state-title {
  flex-wrap: wrap;
}
.artifact-text small {
  line-height: 1.5;
}
.stage-caption {
  gap: 12px;
}
.demo-label {
  text-align: right;
}
.workspace-note {
  line-height: 1.6;
}
.retrieved-card > span {
  font-size: 12px;
}
.work-option {
  min-width: 0;
}
.work-option .work-count {
  flex-shrink: 0;
}
.work-selectors {
  min-width: 0;
}
.sidebar-bottom {
  line-height: 1.6;
}
.integration-note,
.pricing-note {
  font-size: 12px;
}
.price-card > .plan-top + p {
  min-height: 44px;
}
.site-footer {
  flex-wrap: wrap;
  padding-block: 25px;
}
.copyright {
  white-space: nowrap;
}
.timeline-time {
  font-size: 12px;
}
.journey-heading > div > span {
  font-size: 12px;
}
.journey-count {
  font-size: 12px;
}
.timeline-item p {
  font-size: 14px;
}
.artifact-tag {
  font-size: 12px;
}
.journey-heading {
  flex-wrap: wrap;
}
.search-result {
  flex-wrap: wrap;
}
.saved-chip {
  flex-wrap: wrap;
}
.example-bubble {
  max-width: 100%;
  margin-left: 0;
}
.saved-chip {
  margin-right: 0;
}
.example-search {
  font-size: 12px;
}
.step-visual {
  height: 200px;
}
.chat-panel-heading > div > span {
  line-height: 1.5;
}
.workspace-topbar {
  gap: 10px;
}
.price-description {
  font-size: 12px;
}
.coming-badge {
  font-size: 10px;
}
.plan-badge {
  font-size: 10px;
}
.step-number {
  font-size: 12px;
}
@media (max-width: 1100px) {
  .workspace {
    grid-template-columns: 190px minmax(0, 1fr) 235px;
  }
  .work-option {
    white-space: normal;
  }
  .artifact-heading > span:last-child {
    display: none;
  }
  .artifact-row .current-badge {
    display: none;
  }
  .workspace-heading .eyebrow {
    font-size: 10px;
  }
  .work-count {
    display: none;
  }
}
@media (max-width: 800px) {
  .workspace {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .workspace-heading .eyebrow {
    font-size: 12px;
  }
  .steps-grid {
    gap: 16px;
  }
  .step-visual {
    padding: 12px;
  }
  .saved-chip {
    gap: 5px;
  }
  .saved-chip .check-circle {
    display: none;
  }
  .example-search {
    padding: 8px;
  }
  .price {
    min-height: 76px;
    align-content: center;
  }
  .price-description {
    min-height: 57px;
  }
  .plan-top {
    gap: 10px;
    flex-wrap: wrap;
  }
  .journey-heading .project-symbol {
    display: none;
  }
  .timeline-item h4 {
    font-size: 14px;
  }
  .timeline-item p {
    font-size: 13px;
  }
  .timeline-item {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .workspace {
    grid-template-columns: minmax(0, 1fr);
  }
  .work-selectors {
    gap: 2px;
  }
  .work-option {
    font-size: 11px;
    line-height: 1.4;
    padding: 8px 4px;
  }
  .work-option > span:first-child {
    display: none;
  }
  .stage-caption {
    font-size: 11px;
  }
  .demo-label {
    font-size: 9px;
  }
  .state-title > span {
    font-size: 11px;
  }
  .workspace-heading .eyebrow {
    font-size: 10px;
  }
  .workspace-heading p {
    font-size: 12px;
    line-height: 1.6;
  }
  .workspace-heading .project-symbol {
    display: none;
  }
  .artifact-text strong {
    font-size: 12px;
  }
  .artifact-text small {
    font-size: 11px;
  }
  .workspace-topbar {
    font-size: 11px;
  }
  .workspace-topbar > span > span {
    margin-inline: 4px;
  }
  .workspace-note {
    font-size: 11px;
  }
  .demo-controls > span:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 3px;
  }
  .price {
    min-height: 0;
  }
  .price-description {
    min-height: 0;
  }
  .price-card > .plan-top + p {
    min-height: 0;
  }
  .steps-grid {
    gap: 36px;
  }
  .step-visual {
    padding: 25px;
  }
  .saved-chip .check-circle {
    display: grid;
  }
  .journey-heading .project-symbol {
    display: grid;
  }
  .journey-heading > div > span {
    font-size: 10px;
  }
  .journey-count {
    display: none;
  }
  .timeline-time {
    font-size: 10px;
  }
  .closing-content .eyebrow {
    font-size: 10px;
  }
  .site-footer nav {
    font-size: 12px;
  }
}
/* Keep secondary copy readable against the light surfaces. */
.cta-note,
.stage-caption,
.integration-strip > p:first-child,
.integration-note,
.demo-controls > span:first-child,
.demo-controls button,
.demo-controls button > span,
.saved-chip small,
.search-result small,
.step-number,
.example-search,
.reuse-caption,
.continuity-copy > .eyebrow,
.journey-heading > div > span,
.journey-count,
.timeline-time,
.timeline-item p,
.artifact-tag,
.price-card > .plan-top + p,
.price > span:not(.price-amount),
.price-description,
.plan-foot,
.pricing-note,
.faq-list details p,
.site-footer > p,
.site-footer nav,
.copyright,
.dialog-meta,
.dialog-footer {
  color: #606d84;
}
.search-result .current-badge,
.timeline-item .current-badge {
  color: #327460;
}
.plan-badge {
  color: #455caa;
}
.coming-badge {
  color: #606d84;
}

.problem-section {
  border-bottom: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 44px;
}
.problem-number {
  display: block;
  color: #606d84;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.problem-grid h3 {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.problem-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 12px;
}
.team-entry {
  margin-top: 30px;
}
.team-entry p {
  color: #606d84;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 13px;
  max-width: 370px;
}
.value-list span {
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .problem-grid {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 30px;
  }
  .problem-number {
    margin-bottom: 7px;
  }
}
