@font-face {
  font-family: Plex;
  src: url("assets/fonts/plex-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: Plex;
  src: url("assets/fonts/plex-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: Plex;
  src: url("assets/fonts/plex-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}
:root {
  color-scheme: dark;
  --bg: #0b0d12;
  --surface: #12151c;
  --raised: #191d27;
  --text: #f4f5f7;
  --muted: #b3bac8;
  --accent: #6857f5;
  --accent-light: #aa9fff;
  --cyan: #3ec6e0;
  --success: #85d5ad;
  --border: #2b303c;
  --font: Plex, Arial, sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --radius: 8px;
  --space: clamp(24px, 5.55vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
summary {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(44px, 5.65vw, 84px);
  font-weight: 600;
  line-height: 1.08;
}
h2 {
  font-size: clamp(32px, 3.4vw, 49px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
pre:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: white;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(calc(100% - var(--space) * 2), 1320px);
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 14px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--accent-light);
}
.skip-link {
  position: absolute;
  top: 10px;
  left: 20px;
  transform: translateY(-160%);
  z-index: 10;
  background: var(--text);
  color: var(--bg);
  padding: 12px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.desktop-nav a,
.site-footer nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
}
.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--text);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 50px;
  padding: 11px 21px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.button:hover {
  background: #7969ff;
  border-color: #7969ff;
}
.button-small {
  min-height: 42px;
  padding: 8px 17px;
  font-size: 14px;
  gap: 20px;
}
.button-secondary {
  background: var(--raised);
  border-color: #414859;
}
.button-secondary:hover {
  background: #252a37;
  border-color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 500;
}
.text-link:hover {
  text-decoration: underline;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mobile-menu {
  display: none;
}
.hero {
  padding-top: 65px;
}
.hero-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}
.hero h1 {
  grid-column: 1/8;
}
.hero-copy {
  grid-column: 8/13;
  max-width: 470px;
  padding-top: 8px;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.hero-copy .actions {
  margin-top: 27px;
  gap: 22px;
}
.hero-copy .text-link {
  font-size: 14px;
}
.trust-line {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.local-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin: 0 7px 1px 0;
}
.marked-word {
  position: relative;
  display: inline-block;
}
.marked-word:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid var(--accent);
}
.mark-corner {
  position: absolute;
  right: -8px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--accent);
  background: var(--bg);
}
.hero-visual {
  position: relative;
  margin-top: 55px;
  padding-bottom: 60px;
}
.workbench-frame {
  width: 86%;
  border: 1px solid #363b4b;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 60px #0004;
}
.workbench {
  width: 100%;
}
.prompt-preview {
  position: absolute;
  right: 0;
  top: 28%;
  width: 31%;
  min-width: 310px;
  border: 1px solid #d4d5df;
  border-radius: 6px;
  background: #f4f5f7;
  color: #252737;
  box-shadow: 0 16px 40px #0005;
  z-index: 2;
  transform: rotate(1deg);
}
.preview-label {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid #d7d9e0;
  font-size: 12px;
  font-weight: 500;
}
.file-type {
  font: 11px var(--mono);
  color: #676c7e;
  align-self: center;
}
.prompt-content {
  padding: 22px;
  font: 12px/1.65 var(--mono);
}
.prompt-content p {
  color: #555b6c;
  margin-bottom: 13px;
}
.prompt-content .md-heading {
  color: #5142c0;
  font-weight: 600;
}
.prompt-content .priority {
  color: #282b35;
  font-size: 11px;
}
.preview-note {
  border-left: 2px solid var(--accent);
  padding-left: 10px;
  color: #282b35;
}
.preview-note span {
  color: #5142c0;
}
.bundle-footer {
  padding: 12px 17px;
  border-top: 1px solid #d7d9e0;
  font-size: 11px;
  color: #555b6c;
}
.hero-visual figcaption {
  font-size: 12px;
  margin-top: 16px;
  color: var(--muted);
}
.handoff-line {
  position: absolute;
  z-index: 3;
  width: 34%;
  height: auto;
  top: 42%;
  left: 48%;
  pointer-events: none;
}
.handoff-line path {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 1;
  animation: handoff 1.7s 0.5s both;
}
.handoff-line circle {
  fill: var(--accent);
  stroke: var(--bg);
  stroke-width: 2;
}
@keyframes handoff {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.section-heading {
  max-width: 890px;
  margin-bottom: 40px;
}
.section-heading > p:last-child:not(.eyebrow) {
  max-width: 670px;
  margin-top: 24px;
}
.problem {
  border-top: 1px solid var(--border);
  padding-top: 85px;
}
.comparison {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: start;
}
.comparison figure {
  min-width: 0;
}
.comparison-image img {
  width: 100%;
  aspect-ratio: 8 / 5;
}
.comparison .before {
  padding-top: 35px;
}
.image-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding-bottom: 14px;
  font-weight: 500;
}
.image-label span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.comparison-image {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
}
.before img {
  opacity: 0.77;
}
.comparison figcaption {
  font-size: 13px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.question {
  position: absolute;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  background: #242937;
  color: #f4f5f7;
  border: 1px solid #697087;
  font-family: var(--mono);
  border-radius: 50%;
}
.q-one {
  left: 56%;
  top: 28%;
}
.q-two {
  left: 53%;
  top: 71%;
}
.q-three {
  left: 79%;
  top: 56%;
}
.annotation-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font: 12px var(--mono);
  border-radius: 50%;
}
.workflow {
  padding-top: 65px;
}
.workflow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.workflow-list li {
  position: relative;
  padding: 27px 28px 0 0;
  border-top: 1px solid var(--border);
}
.step-number {
  font: 13px var(--mono);
  color: var(--accent-light);
  display: inline-block;
  margin-bottom: 22px;
  background: var(--bg);
}
.workflow-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  background: var(--bg);
}
.workflow-list h3 {
  margin-bottom: 15px;
  font-size: 28px;
}
.workflow-list p {
  font-size: 15px;
  min-height: 100px;
  max-width: 240px;
}
.step-fragment {
  margin-top: 22px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.formats {
  font: 13px var(--mono);
}
.formats span:not(:nth-child(2)) {
  padding: 6px 0;
}
.annotation-tools {
  font-size: 33px;
  color: var(--accent-light);
  gap: 28px;
}
.rectangle-tool {
  width: 27px;
  height: 19px;
  border: 1px solid var(--accent-light);
}
.priority-fragment {
  font-size: 12px;
  gap: 18px;
}
.priority-fragment strong {
  font-weight: 500;
  color: var(--text);
  border: 1px solid #51596a;
  padding: 3px 10px;
  border-radius: 3px;
}
.product-detail {
  border-top: 1px solid var(--border);
}
.detail-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 65px;
  margin-top: 45px;
  align-items: center;
}
.detail-image {
  min-width: 0;
}
.detail-image img {
  border-radius: 6px;
  border: 1px solid var(--border);
  width: 100%;
}
.detail-image figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.capabilities article {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}
.capabilities article:last-child {
  margin-bottom: 0;
}
.capabilities h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.capabilities p {
  font-size: 15px;
}
.capabilities .small {
  font-size: 13px;
  margin-top: 12px;
}
.local-first {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.local-layout {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 100px;
  align-items: center;
}
.local-text {
  color: var(--success);
}
.local-description {
  margin-top: 26px;
  max-width: 490px;
}
.local-facts {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.local-facts li:before {
  content: "✓";
  color: var(--success);
  margin-right: 12px;
}
.folder-diagram {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 28px 32px;
  border-radius: var(--radius);
  font: 14px/1.7 var(--mono);
}
.folder-heading {
  font-size: 16px;
  color: var(--text);
  padding-bottom: 20px;
}
.folder-heading > span {
  color: var(--accent-light);
  margin-right: 10px;
}
.file-tree,
.file-tree ul {
  list-style: none;
  padding-left: 23px;
}
.file-tree {
  padding-left: 6px;
  margin: 0;
}
.file-tree li {
  position: relative;
  border-left: 1px solid #3c3d59;
  padding: 10px 0 10px 23px;
  color: var(--muted);
}
.file-tree li:before {
  content: "";
  position: absolute;
  width: 13px;
  left: 0;
  top: 23px;
  border-top: 1px solid #3c3d59;
}
.file-tree small {
  display: block;
  font: 11px var(--font);
  color: var(--muted);
}
.file-tree ul {
  padding-left: 0;
  margin-top: 10px;
}
.file-tree .export-folder {
  color: var(--accent-light);
}
.export-formats {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  color: var(--text);
}
.export-formats span {
  color: var(--accent-light);
}
.folder-diagram figcaption {
  font: 12px/1.6 var(--font);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 15px;
  color: var(--muted);
}
.installation {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 75px;
}
.install-intro > p:not(.eyebrow) {
  margin-block: 24px;
  max-width: 330px;
}
.install-options {
  min-width: 0;
}
.install-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 25px;
}
.install-tabs a {
  font-size: 14px;
  min-height: 45px;
  text-decoration: none;
  color: var(--muted);
  padding: 0 3px 15px;
  white-space: nowrap;
}
.install-tabs [aria-selected="true"] {
  border-bottom: 2px solid var(--accent);
  color: var(--text);
}
.install-panel {
  margin-bottom: 25px;
}
.install-panel h3 {
  font-size: 20px;
  margin: 20px 0;
}
.tabs-enhanced .install-panel h3 {
  display: none;
}
.code-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  margin: 18px 0;
}
.code-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  font: 11px var(--mono);
  color: var(--muted);
  min-height: 48px;
  gap: 12px;
}
.copy-button {
  border: 1px solid #454c5e;
  border-radius: 3px;
  color: var(--text);
  background: var(--raised);
  padding: 5px 12px;
  min-width: 67px;
  font: 12px var(--font);
  min-height: 32px;
}
.copy-button:hover {
  border-color: var(--muted);
}
.copy-button.copied {
  color: var(--success);
  border-color: var(--success);
}
pre {
  font: 13px/1.85 var(--mono);
  margin: 0;
  padding: 22px 18px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #ddd9ff;
}
code {
  font-family: var(--mono);
}
.install-panel > .text-link {
  margin-top: 15px;
}
.mac-notice {
  font-size: 13px;
  line-height: 1.65;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}
.mac-notice strong {
  color: var(--text);
  font-weight: 500;
}
.copy-status {
  min-height: 24px;
  color: var(--success);
  margin-top: 12px;
}
.open-source {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 30px;
  align-items: center;
}
.source-symbol {
  font: 80px var(--mono);
  color: var(--accent-light);
}
.open-source p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 24px;
}
.open-source .actions {
  margin-top: 28px;
}
.faq {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 75px;
}
.faq h2 {
  max-width: 300px;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list details:first-child {
  border-top: 1px solid var(--border);
}
.faq-list summary {
  list-style: none;
  position: relative;
  padding: 21px 38px 21px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 18px;
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  padding: 0 32px 25px 0;
  font-size: 14px;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 45px;
  padding-bottom: 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.footer-top p {
  font-size: 14px;
  margin-top: 13px;
}
.site-footer nav {
  display: flex;
  gap: 28px;
  align-items: start;
  padding-top: 12px;
}
.footer-note {
  font-size: 12px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
@media (min-width: 1600px) {
  .hero-copy {
    grid-column: 8/13;
  }
  .hero h1 {
    font-size: 84px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 25px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero-intro {
    gap: 28px;
  }
  .hero-copy .actions {
    gap: 14px;
  }
  .hero-copy .lead {
    font-size: 16px;
  }
  .hero-copy .button {
    min-height: 45px;
  }
  .hero-copy .text-link {
    font-size: 13px;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .prompt-preview {
    min-width: 285px;
    top: 21%;
  }
  .prompt-content {
    padding: 16px;
    font-size: 11px;
  }
  .prompt-content p {
    margin-bottom: 10px;
  }
  .handoff-line {
    top: 41%;
    left: 42%;
  }
  .trust-line {
    font-size: 11px;
  }
  .section {
    padding-block: 75px;
  }
  .local-layout {
    gap: 45px;
  }
  .detail-layout {
    gap: 35px;
  }
  .installation,
  .faq {
    gap: 35px;
  }
  .workflow-list li {
    padding-right: 20px;
  }
  .workflow-list p {
    min-height: 128px;
  }
  .comparison {
    gap: 25px;
  }
  .image-label span {
    display: none;
  }
  .source-symbol {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  :root {
    --space: 24px;
  }
  .site-header {
    height: 76px;
    gap: 16px;
    position: relative;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .desktop-nav {
    display: none;
  }
  .site-header > .button {
    margin-left: auto;
  }
  .button-small {
    font-size: 12px;
    padding: 8px 11px;
    gap: 12px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu > summary {
    list-style: none;
    cursor: pointer;
    font-size: 13px;
    padding: 10px 0;
  }
  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 67px;
    z-index: 8;
    background: var(--raised);
    border: 1px solid #414859;
    border-radius: 5px;
    min-width: 205px;
    padding: 10px;
  }
  .mobile-menu nav a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    padding: 11px;
  }
  .hero {
    padding-top: 40px;
  }
  h1 {
    font-size: clamp(41px, 7.7vw, 60px);
  }
  .hero-intro {
    display: block;
  }
  .hero-copy {
    max-width: 530px;
    padding-top: 25px;
  }
  .hero-copy .lead {
    font-size: 17px;
  }
  .hero-copy .actions {
    gap: 24px;
    margin-top: 23px;
  }
  .hero-copy .text-link {
    font-size: 14px;
  }
  .trust-line {
    font-size: 11px;
    margin-top: 19px;
  }
  .hero-visual {
    margin-top: 35px;
    padding-bottom: 32px;
  }
  .workbench-frame {
    width: 100%;
    border-radius: 5px;
  }
  .prompt-preview {
    position: relative;
    margin-top: -6%;
    margin-left: auto;
    width: 71%;
    min-width: 0;
    transform: none;
  }
  .prompt-content {
    font-size: 11px;
    padding: 17px;
  }
  .prompt-content p {
    margin-bottom: 12px;
  }
  .prompt-content .priority {
    font-size: 11px;
  }
  .preview-label {
    font-size: 11px;
    padding: 11px 14px;
  }
  .bundle-footer {
    font-size: 10px;
  }
  .handoff-line {
    top: 31%;
    left: 9%;
    width: 33%;
    height: 100px;
  }
  .hero-visual figcaption {
    font-size: 11px;
    max-width: 80%;
    margin-top: 20px;
  }
  .section {
    padding-block: 60px;
  }
  h2 {
    font-size: 34px;
    line-height: 1.17;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 15px;
    margin-top: 20px;
  }
  .comparison {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .comparison .before {
    padding-top: 0;
    width: 83%;
  }
  .comparison .after {
    width: 100%;
  }
  .image-label span {
    display: inline;
  }
  .comparison figcaption {
    font-size: 12px;
  }
  .workflow-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }
  .workflow-list li {
    padding-top: 20px;
  }
  .step-number {
    margin-bottom: 17px;
  }
  .workflow-list h3 {
    font-size: 26px;
  }
  .workflow-list p {
    min-height: 0;
    font-size: 14px;
  }
  .step-fragment {
    margin-top: 16px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 30px;
  }
  .detail-image {
    max-width: 580px;
  }
  .capabilities article {
    gap: 17px;
    margin-bottom: 30px;
  }
  .capabilities h3 {
    font-size: 23px;
  }
  .local-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .local-description {
    font-size: 15px;
  }
  .folder-diagram {
    padding: 23px 25px;
    font-size: 13px;
  }
  .installation {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .install-intro > p:not(.eyebrow) {
    max-width: 450px;
    margin-block: 20px;
  }
  .install-tabs {
    gap: 22px;
  }
  .install-tabs a {
    font-size: 13px;
  }
  .code-heading {
    font-size: 10px;
    padding-inline: 12px;
  }
  pre {
    font-size: 12px;
    padding: 18px 14px;
  }
  .open-source {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .source-symbol {
    font-size: 45px;
  }
  .open-source p:not(.eyebrow) {
    font-size: 15px;
  }
  .open-source .actions {
    gap: 23px;
    font-size: 14px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq h2 {
    max-width: none;
  }
  .footer-top {
    display: block;
  }
  .site-footer nav {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 25px;
  }
  .footer-note {
    margin-top: 30px;
  }
  .site-footer {
    padding-top: 30px;
  }
}
@media (max-width: 374px) {
  :root {
    --space: 17px;
  }
  .site-header {
    gap: 12px;
  }
  .brand {
    font-size: 20px;
    gap: 3px;
  }
  .brand img {
    width: 27px;
    height: 27px;
  }
  .button-small {
    gap: 7px;
    font-size: 11px;
    padding-inline: 9px;
  }
  .hero-copy .actions {
    gap: 17px;
  }
  .hero-copy .text-link {
    font-size: 12px;
  }
  .hero-copy .button {
    font-size: 14px;
    gap: 20px;
  }
  h1 {
    font-size: 39px;
  }
  h2 {
    font-size: 30px;
  }
  .prompt-preview {
    width: 89%;
  }
  .hero-visual figcaption {
    max-width: 100%;
  }
  .workflow-list {
    column-gap: 12px;
  }
  .workflow-list li {
    padding-right: 0;
  }
  .priority-fragment {
    display: block;
    font-size: 11px;
  }
  .priority-fragment strong {
    display: inline-block;
    margin-top: 7px;
  }
  .install-tabs {
    gap: 14px;
  }
  .install-tabs a {
    font-size: 12px;
  }
  .folder-diagram {
    padding: 20px 17px;
  }
  .file-tree li {
    padding-left: 17px;
  }
  .footer-top p br {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .handoff-line path {
    stroke-dashoffset: 0;
  }
}
