@charset "UTF-8";
:root {
  --paper: #f7f9fc;
  --white: #fff;
  --ink: #18283b;
  --muted: #586679;
  --line: #dce2eb;
  --accent: #e6532a;
  --blue: #4159a4;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
::selection {
  background: #ffdbc9;
  color: #18283b;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.wrap {
  width: min(1264px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  min-height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -1.2px;
}
.brand img {
  border-radius: 7px;
}
.brand-ai {
  color: var(--blue);
}
.brand-logo {
  display: block;
  position: relative;
  width: 124px;
  aspect-ratio: 980 / 570;
  overflow: hidden;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
/* Display the original wordmark without its large empty image border. */
.brand .brand-logo img {
  position: absolute;
  width: 127.9592%;
  max-width: none;
  height: auto;
  left: -14.2857%;
  top: -61.4035%;
  border-radius: 0;
}
.site-footer .brand-logo {
  width: 110px;
}
nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
nav a:hover,
.text-link:hover,
.footer-right a:hover {
  color: var(--accent);
}
.nav-cta {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 17px;
  background: var(--white);
}
.nav-cta span {
  margin-left: 20px;
}
.hero {
  padding-block: 89px 76px;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.eyebrow-divider {
  color: #a0abbc;
  margin-inline: 3px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 750;
  line-height: 1.27;
  letter-spacing: -0.045em;
  margin-bottom: 27px;
}
.accent {
  color: var(--accent);
}
.hero-description {
  font-size: 17px;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 32px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-radius: 7px;
  min-height: 51px;
  padding: 12px 21px;
  font-size: 16px;
  font-weight: 650;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--ink);
  color: var(--white);
}
.primary:hover {
  background: #304260;
}
.text-link {
  font-size: 14px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: color 0.18s;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin: 26px 0 0;
}
.hero-note span {
  margin: 0 8px;
}
.drawing-workspace {
  border: 1px solid #ccd5e3;
  border-radius: 12px;
  background: white;
  box-shadow: 0 24px 64px -25px #233e7140;
  overflow: hidden;
  transform: rotate(-1.3deg);
}
.workspace-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: #63718a;
}
.workspace-dots {
  display: flex;
  gap: 5px;
}
.workspace-dots i {
  width: 6px;
  height: 6px;
  background: #bcc6d4;
  border-radius: 50%;
}
.example-label {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 12px;
}
.canvas-toolbar {
  display: flex;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 12px;
  color: var(--muted);
}
.canvas-toolbar span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tiny-square {
  border: 1px solid var(--blue);
  width: 10px;
  height: 10px;
  display: inline-block;
}
.drawing-canvas img {
  width: 100%;
  display: block;
}
.canvas-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.canvas-bottom span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.canvas-bottom span:last-child {
  margin-left: auto;
}
.legend-line {
  height: 2px;
  width: 13px;
  background: #303d54;
  display: inline-block;
}
.legend-line.orange {
  background: var(--accent);
}
.prompt-example {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.prompt-example p {
  font-size: 14px;
  margin: 0;
  flex: 1;
}
.prompt-icon {
  color: var(--accent);
  font-size: 23px;
}
.prompt-enter {
  border: 1px solid var(--line);
  padding: 0 7px;
  border-radius: 4px;
  color: var(--muted);
}
.principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.principles strong {
  font-weight: 500;
  color: var(--ink);
}
.principles > div {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 14px;
}
.principles b {
  font-weight: 400;
  color: var(--accent);
}
.section {
  padding-block: 104px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: 130px;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(29px, 3.2vw, 44px);
  line-height: 1.4;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 0;
}
.section-heading > p:last-child {
  font-size: 16px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 430px;
  margin-bottom: 5px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.capability {
  position: relative;
  padding: 27px 28px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}
.capability-number {
  font-family: var(--mono);
  font-size: 12px;
  color: #65728a;
}
.capability h3 {
  font-size: 20px;
  font-weight: 650;
  margin: 0 0 13px;
  letter-spacing: -0.02em;
}
.capability p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 23px;
}
.capability-tag {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--blue);
}
.mini-graphic {
  height: 116px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
}
.selected-shape {
  position: relative;
  width: 89px;
  height: 50px;
  border: 1px solid var(--blue);
  background: #ecf0fb;
  transform: rotate(-8deg);
}
.selected-shape i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  background: white;
}
.selected-shape i:nth-child(1) {
  left: -4px;
  top: -4px;
}
.selected-shape i:nth-child(2) {
  right: -4px;
  top: -4px;
}
.selected-shape i:nth-child(3) {
  right: -4px;
  bottom: -4px;
}
.selected-shape i:nth-child(4) {
  left: -4px;
  bottom: -4px;
}
.crosshair {
  font-size: 25px;
  color: var(--accent);
  margin: 34px 0 0 5px;
}
.revision span {
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 10px;
  color: var(--muted);
}
.revision span:last-child {
  border-color: #f1beac;
  background: #fff0e8;
  color: #c34923;
}
.revision i,
.file-flow i {
  font-style: normal;
  font-size: 16px;
  color: #a6b0c0;
}
.file-flow {
  gap: 20px;
}
.file-flow span {
  font-family: var(--mono);
  font-size: 20px;
  letter-spacing: -0.03em;
}
.workflow-section {
  background: #1c2b40;
  color: #f9fbff;
  padding-block: 91px;
}
.workflow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
}
.workflow-intro .eyebrow {
  color: #a6b8ed;
}
.workflow-intro > p:not(.eyebrow) {
  color: #b7c3d6;
  font-size: 16px;
  line-height: 1.95;
  margin: 25px 0;
}
.workflow-intro .text-link {
  color: #f5c1a8;
}
.workflow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.workflow-steps li {
  display: flex;
  gap: 26px;
  padding: 23px 0;
  border-bottom: 1px solid #3a485d;
}
.workflow-steps li:first-child {
  padding-top: 0;
}
.workflow-steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.workflow-steps li > span {
  font-family: var(--mono);
  color: #d79a7c;
  font-size: 14px;
  padding-top: 5px;
}
.workflow-steps h3 {
  font-size: 19px;
  margin: 0 0 8px;
}
.workflow-steps p {
  font-size: 16px;
  color: #b7c3d6;
  line-height: 1.85;
  margin: 0;
}
.exploration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
}
.stage-badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #e5c1aa;
  border-radius: 4px;
  font-size: 12px;
  color: #a4542c;
  margin-bottom: 18px;
}
.exploration-copy > p {
  font-size: 17px;
  line-height: 1.95;
}
.exploration-copy .muted {
  font-size: 14px;
  color: var(--muted);
}
.exploration-copy .text-link {
  margin-top: 7px;
}
.install-section {
  padding-block: 80px;
  background: #eaf0f8;
  border-block: 1px solid #d9e2ee;
}
.install-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 43px;
}
.install-heading > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.95;
  margin: 0 0 5px;
}
.install-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
}
.install-guidance h3 {
  font-size: 17px;
  margin-bottom: 16px;
}
.install-guidance p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}
.install-guidance p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--blue);
}
.install-guidance .version-note {
  font-size: 14px;
  border-left: 2px solid #b6c5e0;
  padding-left: 15px;
  margin-block: 23px;
}
.version-note code {
  overflow-wrap: anywhere;
  font-family: var(--mono);
  font-size: 12px;
}
.install-commands {
  min-width: 0;
}
.command-block {
  padding: 23px 25px;
  background: white;
  border: 1px solid #d3ddea;
  border-radius: 8px;
  margin-bottom: 15px;
}
.command-block > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.command-block h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}
.command-block h3 span {
  font-size: 12px;
  color: var(--blue);
  font-family: var(--mono);
}
.command-block h3 small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.command-block button {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 9px;
  background: var(--paper);
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  min-height: 34px;
}
.command-block button:hover {
  border-color: var(--blue);
}
.command-block pre {
  margin: 17px 0 12px;
  padding: 13px;
  background: #f1f4f9;
  border-radius: 4px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.9;
  font-family: var(--mono);
}
.command-block > p,
.command-block > a {
  font-size: 12px;
  color: var(--muted);
}
.command-block > p {
  margin-bottom: 7px;
}
.command-block > a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.copy-status {
  font-size: 14px;
  color: var(--blue);
  min-height: 23px;
  margin: 0;
}
.site-footer {
  padding-block: 47px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
.site-footer .brand {
  font-size: 20px;
}
.site-footer p {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 0;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: right;
  font-size: 14px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 110px 95px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 30px;
  }
  .hero-description {
    font-size: 16px;
  }
  .desktop-break {
    display: none;
  }
  .hero h1 {
    font-size: 44px;
  }
  .section-heading {
    gap: 40px;
  }
  .workflow-layout,
  .exploration {
    gap: 65px;
  }
  .install-grid {
    gap: 38px;
  }
  .capability {
    padding: 24px 20px;
  }
  .revision {
    gap: 6px;
  }
  .revision span {
    padding: 6px;
  }
  .canvas-bottom span:last-child {
    display: none;
  }
  .prompt-example p {
    font-size: 12px;
  }
  .hero-note {
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 85px;
  }
  .brand {
    font-size: 22px;
  }
  nav {
    gap: 18px;
    font-size: 14px;
  }
  .nav-cta {
    padding: 8px 11px;
  }
  .nav-cta span {
    margin-left: 7px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 53px 48px;
    gap: 45px;
  }
  .hero h1 {
    font-size: clamp(40px, 7vw, 60px);
  }
  .hero-description {
    max-width: 510px;
  }
  .hero-note {
    font-size: 12px;
  }
  .drawing-workspace {
    transform: none;
    max-width: 620px;
    width: 100%;
    justify-self: center;
  }
  .canvas-bottom span:last-child {
    display: flex;
  }
  .prompt-example p {
    font-size: 14px;
  }
  .principles {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .principles > div {
    font-size: 12px;
    gap: 17px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    margin: 0;
  }
  .section-heading > p:last-child {
    max-width: 520px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .capability {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 140px;
    column-gap: 20px;
  }
  .capability-number {
    grid-column: 1;
  }
  .capability h3 {
    grid-column: 1;
    margin-top: 15px;
  }
  .capability p {
    grid-column: 1;
    margin-bottom: 15px;
  }
  .capability-tag {
    grid-column: 1;
  }
  .mini-graphic {
    grid-column: 2;
    grid-row: 1/5;
    align-self: center;
    height: auto;
    margin: 0;
  }
  .revision {
    flex-direction: column;
    gap: 5px;
  }
  .revision i {
    transform: rotate(90deg);
    line-height: 1;
  }
  .file-flow {
    gap: 10px;
  }
  .workflow-section {
    padding-block: 65px;
  }
  .workflow-layout,
  .exploration {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .workflow-intro > p:not(.eyebrow) {
    max-width: 540px;
  }
  .install-section {
    padding-block: 65px;
  }
  .install-heading {
    display: block;
    margin-bottom: 34px;
  }
  .install-heading > p {
    margin-top: 25px;
  }
  .install-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .install-guidance .version-note {
    max-width: 570px;
  }
  .site-footer {
    padding-block: 35px;
  }
  .site-footer p {
    max-width: 210px;
  }
}
@media (max-width: 480px) {
  .site-header {
    gap: 10px;
    flex-wrap: wrap;
    padding-block: 17px;
    min-height: 95px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 27px;
    height: 27px;
  }
  nav {
    gap: 13px;
    font-size: 12px;
  }
  .nav-cta {
    border: 0;
    background: none;
    padding: 8px 0;
  }
  .nav-cta span {
    display: none;
  }
  .hero {
    padding-top: 43px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.07em;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-description {
    font-size: 16px;
  }
  .actions {
    gap: 22px;
  }
  .button {
    font-size: 14px;
    gap: 18px;
  }
  .text-link {
    font-size: 14px;
  }
  .hero-note {
    font-size: 12px;
  }
  .workspace-bar {
    padding: 13px 11px;
    gap: 10px;
    font-size: 12px;
  }
  .example-label {
    font-size: 12px;
  }
  .canvas-toolbar {
    padding: 11px 13px;
  }
  .canvas-bottom {
    font-size: 12px;
    padding: 9px 11px;
    gap: 12px;
  }
  .canvas-bottom span:last-child {
    display: none;
  }
  .prompt-example {
    padding: 12px;
    gap: 8px;
  }
  .prompt-example p {
    font-size: 12px;
  }
  .prompt-enter {
    display: none;
  }
  .principles p {
    font-size: 14px;
  }
  .capability {
    grid-template-columns: 1fr 74px;
    gap: 10px;
    padding: 22px;
  }
  .capability h3 {
    font-size: 19px;
  }
  .capability p {
    font-size: 14px;
  }
  .selected-shape {
    width: 55px;
    height: 39px;
  }
  .crosshair {
    display: none;
  }
  .file-flow {
    flex-direction: column;
  }
  .file-flow i {
    transform: rotate(90deg);
  }
  .capability-tag {
    font-size: 12px;
  }
  .command-block {
    padding: 18px 15px;
  }
  .command-block h3 {
    font-size: 14px;
    gap: 7px;
  }
  .command-block > div {
    gap: 8px;
  }
  .command-block pre {
    font-size: 12px;
  }
  .site-footer {
    flex-direction: column;
    gap: 29px;
  }
  .footer-right {
    text-align: left;
  }
  .site-footer p {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Keep regular reading and action labels legible on small screens. */
nav,
.command-block button {
  font-size: 14px;
}
.capability p,
.workflow-steps p,
.install-guidance p {
  font-size: 16px;
}
