:root {
  color-scheme: light;
  --page: #fff;
  --page-muted: #f6f7f9;
  --surface: #fff;
  --surface-muted: #f1f3f6;
  --ink: #202329;
  --secondary: #555e6d;
  --muted: #606a79;
  --line: #e6e9ee;
  --accent: #2463d4;
  --accent-hover: #194faa;
  --accent-soft: #e8f0fe;
  --window-chrome: #edf0f4;
  --sidebar: #f3f5f8;
  --showcase: #e9eef5;
  --showcase-ink: #53667f;
  --shadow: 0 32px 64px -24px #26395735, 0 4px 14px #2639570c;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1160px;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html[data-theme="dark"] {
  color-scheme: dark;
  --page: #17191e;
  --page-muted: #1c1f25;
  --surface: #21242b;
  --surface-muted: #292d35;
  --ink: #f0f2f6;
  --secondary: #b2bac8;
  --muted: #a0a9b9;
  --line: #343944;
  --accent: #8db8ff;
  --accent-hover: #b1ceff;
  --accent-soft: #2b3d59;
  --window-chrome: #2a2e37;
  --sidebar: #272b33;
  --showcase: #252e3e;
  --showcase-ink: #b6c6de;
  --shadow: 0 32px 64px -24px #0009, 0 4px 14px #0002;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
body:has(.preview-dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
a,
button,
input,
summary {
  outline-offset: 5px;
}
:focus-visible {
  outline: 2px solid var(--accent);
}
img {
  max-width: 100%;
  display: block;
}
svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}
.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
[hidden] {
  display: none !important;
}
::selection {
  color: var(--ink);
  background: var(--accent-soft);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.35;
  letter-spacing: -0.045em;
  font-weight: 650;
}
h3 {
  font-weight: 600;
}
kbd {
  font-family: inherit;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}
.wrap {
  width: min(var(--wrap), calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 16px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  background: color-mix(in srgb, var(--page) 90%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 650;
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.brand img {
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  padding-right: 10px;
}
.nav-links a {
  font-size: 13px;
  color: var(--secondary);
  transition: color 0.2s;
}
.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}
.nav-github .icon {
  height: 14px;
  width: 14px;
  transform: rotate(-45deg);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 7px;
  color: var(--secondary);
  background: transparent;
  transition:
    background 0.18s,
    color 0.18s;
}
.icon-button:hover {
  background: var(--surface-muted);
  color: var(--ink);
}
.theme-sun,
[data-theme="dark"] .theme-moon {
  display: none;
}
[data-theme="dark"] .theme-sun {
  display: block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  min-height: 50px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button-primary {
  background: #2463d4;
  color: white;
  box-shadow:
    0 2px 3px #173d7520,
    inset 0 1px 0 #ffffff18;
}
.button-primary:hover {
  background: #194faa;
  box-shadow: 0 5px 12px #2463d425;
}
.button-small {
  min-height: 36px;
  padding: 9px 14px;
  font-size: 12px;
  border-radius: 7px;
}
.button-small .icon {
  width: 16px;
  height: 16px;
}
.button-quiet {
  color: var(--secondary);
  background: transparent;
}
.button-quiet:hover {
  background: var(--surface-muted);
  color: var(--ink);
}
.button-outline {
  border: 1px solid var(--line);
  background: var(--surface);
}
.button-outline:hover {
  background: var(--surface-muted);
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 62px;
  text-align: center;
}
.announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 5px 10px 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--secondary);
  background: var(--page-muted);
}
.announcement .icon {
  width: 14px;
  height: 14px;
}
.announcement-divider {
  width: 1px;
  height: 10px;
  background: var(--line);
}
.status-dot,
.tiny-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
h1 {
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.22;
  letter-spacing: -0.055em;
  font-weight: 680;
  margin: 26px 0 21px;
}
h1 span {
  color: var(--accent);
}
.hero-description {
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}
.platform-note {
  color: var(--muted);
  font-size: 11px;
  margin-top: 16px;
}
.platform-note span {
  margin-inline: 8px;
}
.showcase {
  padding: 22px 34px 0;
  background: var(--showcase);
  border-radius: 16px;
  margin-top: 46px;
  text-align: left;
  position: relative;
}
.showcase-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1px 18px;
  color: var(--showcase-ink);
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 1.4px;
}
.showcase-topline .tiny-dot {
  background: var(--showcase-ink);
  width: 4px;
  height: 4px;
  margin-right: 6px;
  vertical-align: 2px;
}
.app-window {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--ink) 9%, transparent);
  border-radius: 11px;
  box-shadow: var(--shadow);
  overflow: hidden;
  font-size: 11px;
  line-height: 1.5;
}
.app-titlebar {
  display: flex;
  height: 40px;
  align-items: center;
  background: var(--window-chrome);
  padding-inline: 14px;
  gap: 7px;
}
.traffic-lights {
  display: flex;
  gap: 7px;
  margin-right: 24px;
}
.traffic-lights i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6058;
  box-shadow: inset 0 0 0 1px #00000008;
}
.traffic-lights i:nth-child(2) {
  background: #febc2e;
}
.traffic-lights i:nth-child(3) {
  background: #28c840;
}
.app-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  align-self: end;
  padding: 0 13px;
  color: var(--secondary);
  font-size: 10px;
}
.app-tab.active {
  position: relative;
  background: var(--surface);
  border-radius: 9px 9px 0 0;
  color: var(--ink);
}
.app-tab.active::before,
.app-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
}
.app-tab.active::before {
  left: -8px;
  border-radius: 0 0 8px 0;
  box-shadow: 4px 0 0 var(--surface);
}
.app-tab.active::after {
  right: -8px;
  border-radius: 0 0 0 8px;
  box-shadow: -4px 0 0 var(--surface);
}
.app-tab .icon {
  width: 13px;
  height: 13px;
}
.tab-close {
  margin-left: 22px;
}
.titlebar-add .icon {
  width: 14px;
  height: 14px;
  color: var(--muted);
  margin-left: 6px;
}
.titlebar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  color: var(--muted);
}
.titlebar-right .icon {
  width: 15px;
  height: 15px;
}
.app-body {
  display: flex;
  min-height: 420px;
}
.app-sidebar {
  width: 173px;
  flex-shrink: 0;
  margin: 8px 0 8px 8px;
  padding: 9px 9px 13px;
  background: var(--sidebar);
  border-radius: 8px;
}
.sidebar-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 550;
  color: var(--muted);
}
.sidebar-heading:not(:first-child) {
  margin-top: 11px;
}
.sidebar-heading .icon {
  width: 12px;
  height: 12px;
}
.sidebar-item {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  color: var(--secondary);
  font-size: 10px;
  white-space: nowrap;
}
.sidebar-item .icon {
  width: 14px;
  height: 14px;
}
.sidebar-item.selected {
  background: var(--accent-soft);
  border-radius: 5px;
  color: var(--accent);
  font-weight: 500;
}
.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin: 0 3px;
}
.tag-blue {
  background: #6599eb;
}
.tag-green {
  background: #4ba784;
}
.app-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.app-addressbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 7px 14px;
}
.app-navigation {
  display: flex;
  gap: 12px;
  color: var(--muted);
}
.app-navigation .icon {
  width: 14px;
  height: 14px;
}
.faded {
  opacity: 0.35;
}
.breadcrumbs {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 9px;
  white-space: nowrap;
  color: var(--muted);
}
.breadcrumbs strong {
  font-weight: 500;
  color: var(--secondary);
}
.breadcrumbs .icon {
  width: 11px;
  height: 11px;
}
.demo-search {
  display: flex;
  gap: 5px;
  align-items: center;
  min-width: 0;
  max-width: 166px;
  margin-left: auto;
  background: var(--page-muted);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 6px;
  color: var(--muted);
}
.demo-search .icon {
  width: 12px;
  height: 12px;
}
.demo-search input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  font-size: 9px;
  color: var(--ink);
  outline-offset: 2px;
  padding: 2px 0;
}
.demo-search input::placeholder {
  color: var(--muted);
}
.app-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  padding: 0 14px 6px;
  border-bottom: 1px solid var(--line);
}
.decorative-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}
.decorative-tools span {
  display: flex;
  gap: 3px;
  align-items: center;
  color: var(--secondary);
}
.decorative-tools .icon {
  width: 14px;
  height: 14px;
}
.app-view-buttons {
  display: flex;
  gap: 2px;
  background: var(--page-muted);
  padding: 2px;
  border-radius: 6px;
}
.app-view-buttons .icon-button {
  width: 24px;
  height: 21px;
  border-radius: 4px;
}
.app-view-buttons .icon {
  width: 14px;
  height: 14px;
}
.app-view-buttons [aria-pressed="true"] {
  background: var(--accent-soft);
  color: var(--accent);
}
.app-content {
  display: flex;
  flex: 1;
  min-height: 345px;
}
.file-area {
  flex: 1;
  min-width: 0;
  padding: 16px 12px;
}
.file-section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  padding: 0 6px 14px;
}
.file-area-hint {
  font-size: 8px;
  color: var(--muted);
}
.file-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 6px;
  align-content: start;
}
.file-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  background: transparent;
  border-radius: 6px;
  padding: 5px 3px;
  font-size: 9px;
  transition: background 0.15s;
}
.file-item:hover {
  background: var(--surface-muted);
}
.file-item.is-selected {
  background: var(--accent-soft);
}
.file-item:focus-visible {
  outline-offset: 0;
}
.file-visual {
  width: 60px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  position: relative;
}
.file-visual svg {
  width: 51px;
  height: 51px;
}
.folder-visual {
  color: #65b5e9;
}
.folder-visual svg {
  fill: #6dbce9;
  filter: drop-shadow(0 2px 0 #378bc71a);
}
.photo-visual img {
  width: 58px;
  height: 44px;
  object-fit: cover;
  border: 3px solid var(--surface);
  border-radius: 3px;
  box-shadow: 0 2px 4px #0002;
}
.document-visual {
  color: #889ad7;
}
.document-visual b,
.design-visual b {
  position: absolute;
  bottom: 9px;
  font-size: 9px;
  color: var(--secondary);
  background: var(--surface);
  padding-inline: 2px;
  border-radius: 2px;
}
.design-visual {
  color: #c288b8;
}
.archive-visual {
  color: #c6a86a;
}
.code-visual {
  color: #78ab99;
}
.git-dot {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49a577;
  border: 1.5px solid var(--surface);
}
.file-name {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-type,
.file-size,
.list-columns {
  display: none;
}
.inspector {
  width: 235px;
  min-width: 0;
  padding: 10px 14px;
  border-left: 1px solid var(--line);
}
.inspector-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  font-size: 10px;
}
.inspector-heading .icon-button {
  width: 24px;
  height: 24px;
}
.inspector-heading .icon {
  width: 14px;
  height: 14px;
}
.inspector-art {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--page-muted);
  overflow: hidden;
  margin-top: 7px;
}
.inspector-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inspector-art > svg {
  width: 68px;
  height: 68px;
  color: #7da5d7;
}
.inspector-info {
  display: flex;
  flex-direction: column;
  padding-top: 13px;
  font-size: 10px;
}
.inspector-info > strong {
  font-size: 12px;
  font-weight: 550;
}
#inspector-kind {
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
}
.inspector-label {
  font-size: 8px;
  color: var(--muted);
  margin-top: 17px;
  margin-bottom: 6px;
}
.file-tag {
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--secondary);
}
.preview-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  text-align: left;
  background: transparent;
  padding: 0;
  color: var(--muted);
  font-size: 8px;
}
.preview-hint kbd {
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 5px 7px;
  color: var(--secondary);
  font-size: 8px;
}
.app-status {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 6px 13px;
  color: var(--muted);
  font-size: 8px;
  border-top: 1px solid var(--line);
}
.second-pane {
  display: none;
  width: 48%;
  border-left: 1px solid var(--line);
  padding: 13px;
}
.second-pane-path {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.second-pane-path .icon {
  width: 13px;
  height: 13px;
}
.second-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 20px;
}
.second-pane-grid span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
}
.second-pane-grid svg {
  color: #7ab4e0;
  width: 46px;
  height: 46px;
}
.second-pane p {
  color: var(--muted);
  font-size: 9px;
  text-align: center;
  margin-top: 44px;
}
.app-window[data-view="split"] .inspector {
  display: none;
}
.app-window[data-view="split"] .second-pane {
  display: block;
}
.app-window[data-view="split"] .file-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.app-window[data-view="split"] .file-area-hint {
  display: none;
}
.app-window[data-view="list"] .file-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.app-window[data-view="list"] .file-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 67px 50px;
  gap: 5px;
  padding: 5px 4px;
  text-align: left;
  border-radius: 4px;
}
.app-window[data-view="list"] .file-visual {
  width: 22px;
  height: 23px;
  margin: 0;
}
.app-window[data-view="list"] .file-visual svg {
  width: 22px;
  height: 22px;
}
.app-window[data-view="list"] .file-visual b {
  display: none;
}
.app-window[data-view="list"] .photo-visual img {
  width: 22px;
  height: 18px;
  border-width: 1px;
}
.app-window[data-view="list"] .git-dot {
  width: 5px;
  height: 5px;
  right: -2px;
  bottom: 0;
  border-width: 1px;
}
.app-window[data-view="list"] .file-type,
.app-window[data-view="list"] .file-size {
  display: block;
  color: var(--muted);
  font-size: 8px;
}
.app-window[data-view="list"] .file-size {
  text-align: right;
}
.app-window[data-view="list"] .list-columns {
  display: grid;
  grid-template-columns: 1fr 67px 50px;
  gap: 5px;
  color: var(--muted);
  font-size: 8px;
  padding: 0 4px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.list-columns span:last-child {
  text-align: right;
}
.demo-empty {
  color: var(--muted);
  font-size: 11px;
  padding: 24px 8px;
}
.showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 65px;
  color: var(--showcase-ink);
  font-size: 9px;
}
.demo-caption-divider {
  margin-inline: 7px;
  opacity: 0.5;
}
.demo-modes {
  display: flex;
  gap: 5px;
  padding: 3px;
  background: color-mix(in srgb, var(--showcase-ink) 8%, transparent);
  border-radius: 7px;
}
.demo-modes button {
  font-size: 10px;
  padding: 6px 13px;
  color: var(--showcase-ink);
  background: transparent;
  border-radius: 5px;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.demo-modes [aria-pressed="true"] {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px #0000000c;
}
.demo-tip {
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-tip .icon {
  width: 12px;
  height: 12px;
  transform: rotate(-35deg);
}
.value-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  border-bottom: 1px solid var(--line);
  padding: 33px 0;
  color: var(--secondary);
}
.value-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}
.value-strip .icon {
  color: var(--muted);
  width: 17px;
  height: 17px;
}
.section {
  padding-block: 105px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}
.eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  margin-bottom: 19px;
}
.section-description {
  max-width: 380px;
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.9;
  padding-bottom: 5px;
}
.workspace-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 62px;
  align-items: center;
}
.layout-demo {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--page-muted);
}
.layout-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.layout-demo-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
}
.layout-demo-head .icon {
  width: 15px;
  height: 15px;
}
.pane-map {
  height: 213px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 24px;
}
.map-pane {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  padding: 12px;
}
.map-pane:first-child {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
}
.map-pane > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--secondary);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.map-pane .icon {
  width: 12px;
  height: 12px;
  color: var(--accent);
}
.map-files {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.map-files i {
  height: 28px;
  background: #c6ddf4;
  border: 1px solid #b0d0ed;
  border-radius: 3px;
  position: relative;
}
.map-files i::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 4px;
  left: -1px;
  top: -4px;
  border: 1px solid #b0d0ed;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: #c6ddf4;
}
[data-theme="dark"] .map-files i,
[data-theme="dark"] .map-files i::before {
  background: #3e648a;
  border-color: #527da8;
}
.map-lines {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.map-lines i {
  height: 14px;
  border-radius: 3px;
  background: var(--surface-muted);
}
.map-lines i:nth-child(2) {
  background: var(--accent-soft);
}
.map-extra,
.map-fourth {
  display: none;
}
.pane-map[data-layout="three"],
.pane-map[data-layout="four"] {
  grid-template-rows: 1fr 1fr;
}
.pane-map[data-layout="three"] .map-pane:first-child {
  grid-row: span 2;
}
.pane-map[data-layout="three"] .map-extra,
.pane-map[data-layout="four"] .map-extra,
.pane-map[data-layout="four"] .map-fourth {
  display: block;
}
.layout-options {
  display: flex;
  gap: 5px;
  margin-top: 21px;
}
.layout-options button {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  padding: 7px 4px;
  font-size: 10px;
  color: var(--secondary);
  border-radius: 5px;
}
.layout-options [aria-pressed="true"] {
  background: var(--surface);
  border-color: var(--line);
  color: var(--accent);
  box-shadow: 0 1px 3px #00000005;
}
.layout-options button:hover {
  background: var(--surface);
}
.workspace-notes article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}
.workspace-notes article:first-child {
  padding-top: 0;
}
.workspace-notes article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.note-number {
  color: var(--muted);
  font-family: "SF Mono", Menlo, monospace;
  font-size: 10px;
  padding-top: 3px;
}
.workspace-notes h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.workspace-notes p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--secondary);
}
.preview-section {
  background: #eaf0f6;
  padding-block: 89px;
  overflow: hidden;
}
[data-theme="dark"] .preview-section {
  background: #242e3c;
}
.preview-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
  align-items: center;
}
.preview-copy > p:not(.eyebrow):not(.preview-footnote) {
  font-size: 16px;
  line-height: 1.9;
  color: var(--secondary);
  margin-top: 22px;
}
.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 300px;
  margin: 23px 0 27px;
}
.format-list span {
  font-size: 10px;
  color: var(--secondary);
  border: 1px solid color-mix(in srgb, var(--secondary) 18%, transparent);
  border-radius: 4px;
  padding: 4px 8px;
}
.button-dark {
  color: white;
  background: #293a51;
  font-size: 12px;
  min-height: 44px;
  padding: 11px 16px;
}
.button-dark:hover {
  background: #1f2d41;
}
.button-dark kbd {
  border: 1px solid #ffffff4a;
  padding: 5px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 9px;
  color: #e0e7ee;
}
.preview-footnote {
  font-size: 9px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 310px;
  line-height: 1.8;
}
.preview-composition {
  position: relative;
  padding-top: 38px;
}
.preview-mini-file {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  border-radius: 9px;
  padding: 12px 18px;
  width: 326px;
  position: absolute;
  top: -14px;
  left: -24px;
  box-shadow: 0 8px 24px #2c405514;
  z-index: 1;
  transform: rotate(-3deg);
}
.preview-mini-file > svg {
  color: #bca06c;
  width: 32px;
  height: 32px;
}
.preview-mini-file div {
  display: flex;
  flex-direction: column;
}
.preview-mini-file strong {
  font-size: 11px;
  font-weight: 550;
}
.preview-mini-file div > span {
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.mini-space {
  margin-left: auto;
  font-size: 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  padding: 5px 8px;
  border-radius: 4px;
}
.preview-window {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  box-shadow: 0 25px 45px -16px #2b466640;
  transform: rotate(1.2deg);
}
.preview-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--secondary);
  padding: 11px 15px;
}
.preview-window-bar .icon {
  width: 15px;
  height: 15px;
}
.preview-window-name {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
}
.preview-window > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.57;
  object-fit: cover;
}
.preview-window-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  font-size: 8px;
  color: var(--secondary);
}
.preview-window-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.preview-window-footer .icon {
  width: 11px;
  height: 11px;
}
.preview-annotation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 23px;
  font-size: 10px;
  color: var(--secondary);
}
.preview-annotation .icon {
  width: 14px;
  height: 14px;
  color: #489273;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--page-muted);
  border: 1px solid var(--line);
  padding: 26px 25px 0;
  border-radius: 10px;
  overflow: hidden;
}
.feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature-icon {
  color: var(--accent);
}
.feature-icon .icon {
  width: 24px;
  height: 24px;
}
.feature-label {
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.feature-card h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.85;
  min-height: 78px;
}
.search-illustration {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 13px;
  border-radius: 7px 7px 0 0;
  margin-top: 24px;
  margin-bottom: -1px;
  height: 146px;
  box-shadow: 0 0 15px #00000004;
}
.search-illustration > div {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 11px;
}
.search-illustration kbd {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 3px;
  font-size: 9px;
  color: var(--muted);
}
.search-illustration > span {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 13px;
  font-size: 9px;
}
.search-illustration strong {
  font-weight: 400;
}
.search-illustration .icon {
  color: var(--muted);
  width: 14px;
  height: 14px;
}
.search-illustration small {
  font-size: 8px;
  margin-left: auto;
  color: var(--muted);
}
mark {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 1px;
  border-radius: 2px;
}
.connection-illustration {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 169px;
  padding-inline: 4px;
}
.connection-illustration > span {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 9px;
  color: var(--secondary);
}
.connection-illustration > span > svg {
  width: 39px;
  height: 39px;
  color: #8a9bb2;
}
.connection-illustration i {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex: 1;
  font-style: normal;
  margin-top: -8px;
}
.connection-illustration i .icon {
  color: #559e80;
  width: 16px;
  height: 16px;
}
.connection-illustration b {
  border-top: 1px dashed #a7b8c9;
  width: 100%;
}
.connection-illustration small {
  color: var(--muted);
  font-size: 8px;
}
.git-illustration {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 17px;
  margin-top: 24px;
  height: 146px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
  border-radius: 7px 7px 0 0;
}
.git-illustration span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
}
.git-illustration .icon {
  width: 14px;
  height: 14px;
  color: var(--muted);
}
.git-illustration b {
  margin-left: auto;
  font-size: 9px;
  line-height: 18px;
  width: 18px;
  border-radius: 3px;
  text-align: center;
}
.git-modified {
  color: #856510;
  background: #d4b45420;
}
.git-added {
  color: #33755a;
  background: #51957520;
}
.git-untracked {
  color: #7e718f;
  background: #907eaa20;
}
[data-theme="dark"] .git-modified {
  color: #dfc77e;
}
[data-theme="dark"] .git-added {
  color: #91c8ac;
}
[data-theme="dark"] .git-untracked {
  color: #baacd0;
}
.feature-simple {
  padding: 21px 7px 0;
}
.feature-simple > .icon {
  width: 22px;
  height: 22px;
  color: var(--muted);
  margin-bottom: 14px;
}
.feature-simple h3 {
  font-size: 15px;
  margin-bottom: 9px;
}
.feature-simple p {
  font-size: 14px;
  color: var(--secondary);
  max-width: 315px;
  line-height: 1.9;
}
.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 105px;
}
.details-copy > p:not(.eyebrow) {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.95;
  margin-top: 21px;
  max-width: 380px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  background: transparent;
  padding: 0;
  margin-top: 23px;
  font-size: 12px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link .icon {
  width: 15px;
  height: 15px;
}
.detail-list > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list > div > .icon {
  color: var(--muted);
  width: 22px;
  height: 22px;
}
.detail-list > div > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.detail-list strong {
  font-size: 14px;
  font-weight: 550;
}
.detail-list small {
  font-size: 11px;
  color: var(--muted);
}
.detail-list > div > span:last-child {
  margin-left: auto;
}
.theme-swatches {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.theme-swatches i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f2f5;
  border: 2px solid var(--surface);
}
.theme-swatches i:last-child {
  background: #2a3039;
  margin-left: -7px;
}
.type-sample {
  color: var(--secondary);
  font-size: 26px;
  letter-spacing: -2px;
}
.shortcut-sample {
  display: flex;
  gap: 3px;
}
.shortcut-sample kbd {
  padding: 5px 6px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  color: var(--secondary);
}
.download-section {
  background: var(--page-muted);
  text-align: center;
  padding-block: 70px 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.download-icon {
  margin: 0 auto 21px;
}
.download-section .eyebrow {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.download-section h2 {
  font-size: clamp(38px, 4vw, 52px);
}
.download-section h2 + p {
  color: var(--secondary);
  margin-top: 13px;
  font-size: 14px;
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.install-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 37px;
  font-size: 10px;
  color: var(--secondary);
}
.install-steps span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.install-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 400;
}
.install-steps > .icon {
  width: 12px;
  height: 12px;
  color: var(--muted);
}
.install-help {
  max-width: 535px;
  margin: 22px auto 0;
  font-size: 10px;
  color: var(--muted);
}
.install-help summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  list-style: none;
}
.install-help summary::-webkit-details-marker {
  display: none;
}
.install-help summary .icon {
  width: 11px;
  height: 11px;
  transition: transform 0.2s;
}
.install-help[open] summary .icon {
  transform: rotate(180deg);
}
.install-help p {
  text-align: left;
  line-height: 1.9;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 15px;
  border-radius: 6px;
  margin-top: 14px;
}
.install-help a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mobile-break {
  display: none;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 38px;
}
.footer .brand {
  font-size: 15px;
  gap: 5px;
}
.footer p {
  font-size: 10px;
  color: var(--muted);
  margin: 7px 0 0 6px;
}
.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 26px;
  padding-top: 12px;
  font-size: 10px;
  color: var(--secondary);
}
.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  padding-block: 20px;
  margin-top: 30px;
}
.preview-dialog {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  width: min(820px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  box-shadow: 0 24px 100px #0006;
}
.preview-dialog::backdrop {
  background: #111b2a9c;
  backdrop-filter: blur(8px);
}
.dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 13px 7px 18px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.dialog-toolbar > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--secondary);
}
.dialog-toolbar .icon {
  width: 16px;
  height: 16px;
}
.dialog-content {
  min-height: 200px;
  max-height: calc(100dvh - 160px);
  overflow: auto;
  background: var(--page-muted);
}
.dialog-content > img {
  width: 100%;
  max-height: calc(100dvh - 160px);
  object-fit: contain;
}
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  font-size: 12px;
  border-top: 1px solid var(--line);
}
.dialog-footer strong {
  font-weight: 500;
}
.dialog-footer span {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.dialog-footer kbd {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2px 5px;
  margin-right: 4px;
}
.document-preview {
  padding: 35px;
  max-width: 580px;
  margin-inline: auto;
}
.document-preview h3 {
  font-size: 25px;
  margin-bottom: 18px;
}
.document-preview p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--secondary);
}
.document-preview p + p {
  margin-top: 16px;
}
.folder-preview {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.folder-preview button,
.folder-preview > span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--secondary);
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: left;
}
.folder-preview button:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.folder-preview .icon {
  color: var(--accent);
}
.folder-preview small {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
}
.unsupported-preview {
  text-align: center;
  padding: 50px 25px;
}
.unsupported-preview > svg {
  width: 64px;
  height: 64px;
  color: var(--muted);
  margin-bottom: 16px;
}
.unsupported-preview p {
  margin-top: 10px;
  color: var(--secondary);
  font-size: 13px;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 76px;
  }
  h1 {
    font-size: 74px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .nav-links {
    gap: 20px;
  }
  .showcase {
    padding-inline: 23px;
  }
  .app-sidebar {
    width: 146px;
  }
  .inspector {
    width: 200px;
    padding-inline: 10px;
  }
  .app-addressbar {
    gap: 10px;
  }
  .app-navigation {
    gap: 8px;
  }
  .demo-search {
    max-width: 130px;
  }
  .file-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px 5px;
  }
  .value-strip {
    gap: 35px;
  }
  .workspace-layout {
    gap: 40px;
  }
  .preview-layout {
    gap: 40px;
  }
  .feature-card {
    padding-inline: 20px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .details-section {
    gap: 60px;
  }
}
@media (max-width: 850px) {
  .nav-links {
    gap: 17px;
  }
  .nav-links .nav-github {
    display: none;
  }
  .nav {
    gap: 16px;
  }
  .brand {
    font-size: 17px;
  }
  .app-sidebar {
    width: 125px;
    padding-inline: 6px;
  }
  .app-navigation {
    display: none;
  }
  .inspector {
    width: 175px;
  }
  .inspector-art {
    height: 114px;
  }
  .file-area-hint {
    display: none;
  }
  .file-visual {
    width: 50px;
  }
  .file-visual svg {
    width: 44px;
    height: 44px;
  }
  .photo-visual img {
    width: 48px;
    height: 40px;
  }
  .file-name {
    font-size: 8px;
  }
  .app-window[data-view="list"] .file-item {
    grid-template-columns: 24px minmax(0, 1fr) 45px;
  }
  .app-window[data-view="list"] .file-type {
    display: none;
  }
  .app-window[data-view="list"] .list-columns {
    grid-template-columns: 1fr 45px;
  }
  .list-columns span:nth-child(2) {
    display: none;
  }
  .section-heading {
    gap: 45px;
  }
  .section-description {
    max-width: 300px;
    font-size: 13px;
  }
  .workspace-layout {
    gap: 28px;
  }
  .layout-demo {
    padding: 18px;
  }
  #layout-label {
    display: none;
  }
  .workspace-notes h3 {
    font-size: 14px;
  }
  .workspace-notes article {
    gap: 12px;
    padding-block: 18px;
  }
  .workspace-notes p {
    font-size: 11px;
  }
  .preview-layout {
    gap: 30px;
  }
  .preview-mini-file {
    width: 286px;
    left: -12px;
  }
  .preview-window > img {
    aspect-ratio: 1.15;
  }
  .feature-grid {
    gap: 14px;
  }
  .feature-card {
    padding-inline: 16px;
  }
  .feature-card h3 {
    font-size: 15px;
  }
  .feature-card p {
    font-size: 13px;
    min-height: 96px;
  }
  .connection-illustration {
    gap: 5px;
  }
  .connection-illustration > span > svg {
    width: 31px;
    height: 31px;
  }
  .search-illustration {
    padding-inline: 9px;
  }
  .search-illustration small {
    display: none;
  }
  .details-section {
    gap: 45px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 82px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 64px;
  }
  .nav {
    gap: 10px;
  }
  .brand {
    font-size: 16px;
    gap: 2px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .nav-actions {
    gap: 3px;
  }
  .nav-actions > .theme-toggle {
    width: 34px;
  }
  .nav-actions .button {
    font-size: 11px;
    min-height: 34px;
    padding: 8px 10px;
  }
  .nav-actions .button .icon {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 15px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--page);
    gap: 3px;
  }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links a,
  .nav-links .nav-github {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
  }
  .hero {
    padding-top: 40px;
  }
  .announcement {
    font-size: 10px;
    gap: 8px;
  }
  h1 {
    font-size: clamp(42px, 9.6vw, 62px);
    line-height: 1.25;
    margin-top: 27px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 5px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 14px;
    min-height: 46px;
  }
  .hero-actions .icon {
    width: 16px;
    height: 16px;
  }
  .platform-note {
    font-size: 9px;
  }
  .platform-note span {
    margin-inline: 5px;
  }
  .showcase {
    margin-top: 33px;
    padding: 15px 10px 0;
    border-radius: 10px;
  }
  .showcase-topline {
    padding: 0 3px 12px;
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .showcase-topline > span:last-child {
    font-size: 8px;
  }
  .app-titlebar {
    height: 34px;
    padding-inline: 10px;
  }
  .traffic-lights {
    gap: 5px;
    margin-right: 11px;
  }
  .traffic-lights i {
    width: 7px;
    height: 7px;
  }
  .app-tab {
    font-size: 9px;
    height: 28px;
    padding-inline: 10px;
  }
  .app-tab.inactive,
  .titlebar-add,
  .titlebar-right {
    display: none;
  }
  .app-tab .icon {
    width: 11px;
    height: 11px;
  }
  .tab-close {
    margin-left: 15px;
  }
  .app-body {
    min-height: 324px;
  }
  .app-sidebar {
    display: none;
  }
  .app-addressbar {
    gap: 8px;
    padding: 7px 9px;
    min-height: 38px;
  }
  .breadcrumbs {
    font-size: 8px;
    gap: 4px;
  }
  .demo-search {
    max-width: 126px;
    padding: 3px 5px;
  }
  .demo-search input {
    font-size: 9px;
  }
  .app-toolbar {
    padding-inline: 10px;
    height: 38px;
  }
  .app-view-buttons .icon-button {
    width: 30px;
    height: 28px;
  }
  .decorative-tools {
    gap: 12px;
    font-size: 9px;
  }
  .decorative-tools > .icon:last-child {
    display: none;
  }
  .app-content {
    min-height: 242px;
  }
  .file-area {
    padding: 10px 8px;
  }
  .file-section-label {
    padding-bottom: 8px;
  }
  .file-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 3px;
  }
  .file-visual {
    height: 39px;
    width: 42px;
    margin-bottom: 5px;
  }
  .file-visual svg {
    width: 37px;
    height: 37px;
  }
  .photo-visual img {
    width: 38px;
    height: 31px;
    border-width: 2px;
  }
  .file-visual b {
    bottom: 4px;
    font-size: 7px;
  }
  .file-item {
    padding: 3px 1px;
  }
  .file-name {
    font-size: 7px;
  }
  .inspector {
    width: 123px;
    padding: 7px 8px;
  }
  .inspector-heading {
    font-size: 9px;
  }
  .inspector-art {
    height: 80px;
    margin-top: 5px;
  }
  .inspector-info {
    padding-top: 9px;
  }
  .inspector-info > strong {
    font-size: 10px;
  }
  #inspector-kind {
    font-size: 8px;
  }
  .inspector-label {
    font-size: 7px;
    margin-top: 12px;
  }
  .preview-hint {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 7px;
  }
  .app-status {
    font-size: 7px;
    padding: 6px 9px;
  }
  .showcase-bottom {
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 10px;
    padding: 13px 0;
  }
  .showcase-bottom > span:first-child {
    font-size: 8px;
  }
  .demo-modes {
    gap: 0;
    padding: 2px;
  }
  .demo-modes button {
    font-size: 9px;
    padding: 7px 9px;
  }
  .showcase-bottom .demo-tip {
    display: none;
  }
  .app-window[data-view="list"] .file-item {
    grid-template-columns: 21px minmax(0, 1fr);
    padding-block: 4px;
  }
  .app-window[data-view="list"] .file-size {
    display: none;
  }
  .app-window[data-view="list"] .list-columns {
    grid-template-columns: 1fr;
    padding-bottom: 5px;
  }
  .list-columns span:last-child {
    display: none;
  }
  .app-window[data-view="split"] .file-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 3px;
  }
  .second-pane {
    width: 46%;
    padding: 11px 8px;
  }
  .second-pane-path {
    font-size: 8px;
    gap: 4px;
  }
  .second-pane-path .icon {
    width: 10px;
    height: 10px;
  }
  .second-pane-grid {
    gap: 16px 5px;
    padding-top: 18px;
  }
  .second-pane-grid span {
    font-size: 7px;
    gap: 7px;
  }
  .second-pane-grid svg {
    width: 33px;
    height: 33px;
  }
  .second-pane p {
    font-size: 8px;
    margin-top: 26px;
  }
  .value-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    padding: 25px 15px;
    text-align: left;
  }
  .value-strip span {
    font-size: 10px;
    gap: 8px;
  }
  .value-strip .icon {
    width: 16px;
    height: 16px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -0.04em;
  }
  .section-description {
    margin-top: 19px;
    font-size: 14px;
    max-width: 100%;
    padding-bottom: 0;
  }
  .workspace-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .layout-demo {
    padding: 20px;
  }
  .layout-demo-head {
    font-size: 9px;
  }
  #layout-label {
    display: inline;
    font-size: 8px;
  }
  .pane-map {
    height: 210px;
    margin-top: 18px;
  }
  .layout-options button {
    min-height: 40px;
    font-size: 10px;
  }
  .workspace-notes article {
    padding-block: 21px;
    gap: 17px;
  }
  .workspace-notes h3 {
    font-size: 15px;
  }
  .workspace-notes p {
    font-size: 14px;
  }
  .preview-section {
    padding-block: 58px;
  }
  .preview-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .preview-copy > p:not(.eyebrow):not(.preview-footnote) {
    font-size: 14px;
  }
  .format-list {
    max-width: 330px;
    gap: 6px;
    margin-block: 20px;
  }
  .format-list span {
    font-size: 9px;
  }
  .preview-footnote {
    max-width: none;
  }
  .preview-composition {
    margin: 0 5px;
  }
  .preview-mini-file {
    top: -6px;
    left: -3px;
    width: 285px;
    padding: 10px 14px;
  }
  .preview-window > img {
    aspect-ratio: 1.5;
  }
  .preview-window-footer {
    font-size: 7px;
    padding-inline: 10px;
  }
  .preview-window-footer span {
    gap: 3px;
  }
  .preview-window-footer .icon {
    width: 9px;
    height: 9px;
  }
  .preview-annotation {
    font-size: 9px;
    margin-top: 22px;
    justify-content: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .feature-card {
    padding: 23px 23px 0;
  }
  .feature-heading {
    margin-bottom: 16px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .feature-card p {
    min-height: 0;
    font-size: 14px;
  }
  .search-illustration,
  .git-illustration {
    margin-top: 22px;
    padding-inline: 18px;
  }
  .search-illustration small {
    display: block;
  }
  .search-illustration > span,
  .git-illustration span {
    font-size: 11px;
  }
  .connection-illustration {
    height: 163px;
    padding-inline: 18px;
    gap: 25px;
  }
  .connection-illustration > span > svg {
    width: 43px;
    height: 43px;
  }
  .connection-illustration > span {
    font-size: 10px;
  }
  .feature-simple {
    padding: 14px 4px 15px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 6px 13px;
  }
  .feature-simple > .icon {
    grid-row: span 2;
    margin: 2px 0 0;
  }
  .feature-simple h3 {
    margin: 0;
  }
  .feature-simple p {
    grid-column: 2;
    max-width: none;
  }
  .details-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 0 65px;
  }
  .details-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .detail-list > div {
    gap: 15px;
    padding-block: 23px;
  }
  .detail-list strong {
    font-size: 13px;
  }
  .detail-list small {
    font-size: 10px;
  }
  .download-section {
    padding-block: 47px 38px;
  }
  .download-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }
  .download-section h2 {
    font-size: 39px;
  }
  .download-section .eyebrow {
    font-size: 9px;
  }
  .download-section h2 + p {
    font-size: 12px;
  }
  .download-buttons {
    gap: 9px;
  }
  .download-buttons .button {
    font-size: 11px;
    padding-inline: 12px;
    min-height: 46px;
    gap: 6px;
  }
  .download-buttons .icon {
    width: 15px;
    height: 15px;
  }
  .install-steps {
    gap: 7px;
    font-size: 8px;
    margin-top: 29px;
  }
  .install-steps span {
    gap: 4px;
  }
  .install-steps b {
    width: 15px;
    height: 15px;
    font-size: 8px;
  }
  .install-steps > .icon {
    width: 8px;
    height: 8px;
  }
  .install-help {
    font-size: 9px;
    margin-top: 19px;
  }
  .install-help summary {
    min-height: 35px;
  }
  .footer {
    display: block;
    padding-top: 27px;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 25px;
    margin-top: 15px;
    font-size: 10px;
  }
  .footer-links a {
    padding-block: 8px;
  }
  .footer-bottom {
    margin-top: 22px;
    font-size: 8px;
  }
  .preview-dialog {
    max-height: calc(100dvh - 26px);
  }
  .dialog-footer {
    font-size: 11px;
  }
  .document-preview {
    padding: 25px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .brand {
    font-size: 14px;
  }
  .nav-actions {
    gap: 0;
  }
  .nav-actions > .theme-toggle {
    width: 30px;
  }
  .nav-actions .button {
    padding-inline: 8px;
    font-size: 10px;
  }
  .announcement {
    font-size: 9px;
    gap: 6px;
  }
  h1 {
    font-size: 40px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .inspector {
    width: 111px;
    padding-inline: 7px;
  }
  .demo-search {
    max-width: 113px;
  }
  .breadcrumbs {
    font-size: 7px;
  }
  .file-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .app-content {
    min-height: 294px;
  }
  .install-steps {
    flex-direction: column;
    gap: 9px;
    font-size: 10px;
  }
  .install-steps > .icon {
    display: none;
  }
  .mobile-break {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
