:root {
  color-scheme: light;
  --color-ink: #171714;
  --color-paper: #f4f3ef;
  --color-cream: #fffaf2;
  --color-muted: #77756d;
  --color-line: #dedcd4;
  --color-focus: #9b5f29;
  --color-accent: #bd7b36;
  --shadow-panel: 0 28px 80px rgba(38, 30, 19, 0.11), 0 3px 12px rgba(38, 30, 19, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: "Montserrat", -apple-system, "system-ui", "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--color-accent);
  color: var(--color-cream);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

a:focus-visible,
button:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.section-wide,
.site-header {
  width: calc(100% - 32px);
  max-width: 1040px;
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 11px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-cream);
  font-size: 13px;
  font-weight: 600;
  transition: transform 200ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-line);
}

.brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3.5vw, 18px);
}

.primary-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #7a786f;
  font-size: 12px;
  font-weight: 500;
  transition: color 150ms ease, opacity 150ms ease;
}

.primary-nav a:hover {
  color: var(--color-ink);
}

.primary-nav .nav-features {
  display: none;
}

.primary-nav .nav-github {
  gap: 5px;
  color: var(--color-ink);
  font-weight: 700;
  white-space: nowrap;
}

.nav-github-stars {
  display: inline-flex;
  min-width: 42px;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  visibility: hidden;
  white-space: nowrap;
}

.nav-github-stars.is-ready {
  visibility: visible;
}

.nav-github-bracket,
.nav-github-star {
  display: inline-flex;
  height: 1em;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-github-bracket {
  font-size: 11px;
}

.nav-github-star {
  font-family: "Apple Color Emoji", sans-serif;
  font-size: 11px;
}

.primary-nav .nav-github:hover {
  opacity: 0.6;
}

.primary-nav .nav-plugins.is-current {
  color: var(--color-ink);
  font-weight: 700;
}

.primary-nav .nav-plugins {
  white-space: nowrap;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  min-width: 56px;
  min-height: 32px;
  padding-inline: 10px 8px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 0;
  border-radius: 999px;
  background: #e9e5dd;
  color: #5f5b53;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.language-toggle i {
  font-size: 14px;
  font-weight: 400;
  transition: transform 150ms ease;
}

.language-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 164px;
  padding: 6px;
  gap: 4px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-paper);
  box-shadow: 0 18px 50px rgba(38, 30, 19, 0.14), 0 2px 8px rgba(38, 30, 19, 0.08);
}

.language-options[hidden] {
  display: none;
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 40px;
  padding-inline: 10px 8px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #5f5b53;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.language-option i {
  font-size: 14px;
  opacity: 0;
}

.language-option[aria-checked="true"] {
  background: #e9e5dd;
  color: var(--color-ink);
}

.language-option[aria-checked="true"] i {
  opacity: 1;
}

.language-option:focus-visible {
  outline-offset: -2px;
}

@media (hover: hover) {
  .language-toggle:hover {
    background: #ddd8ce;
    color: var(--color-ink);
  }

  .language-option:hover {
    background: #e9e5dd;
    color: var(--color-ink);
  }
}

.hero {
  padding-block: 72px 150px;
}

.hero-copy {
  max-width: 760px;
  margin-inline: auto;
}

.site-footer {
  max-width: 720px;
  margin-inline: auto;
}

.app-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 34px;
  object-fit: contain;
}

.hero h1 {
  max-width: 760px;
  margin-left: -0.04em;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 650px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 150ms ease;
}

.button-primary {
  padding-inline: 18px;
  background: var(--color-ink);
  color: var(--color-cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-actions .button-primary {
  min-height: 46px;
  gap: 9px;
  padding-inline: 20px;
  font-size: 13px;
}

.hero-actions .button-primary i {
  font-size: 15px;
}

.platform-note {
  color: #8b887f;
  font-size: 12px;
  font-weight: 500;
}

.hero-visual {
  max-width: 980px;
  margin: 86px auto 0;
}

.hero-visual img {
  width: 100%;
  border-radius: 19px;
  box-shadow: var(--shadow-panel);
}

.hero-visual picture {
  display: block;
}

.hero-language-note {
  margin-top: 14px;
  padding-inline: 16px;
  color: #8b887f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.features {
  max-width: 880px;
  padding-bottom: 180px;
}

.section-kicker {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card {
  --stack-scale: 1;
  --stack-shift: 0px;
  position: sticky;
  top: 24px;
  display: flex;
  min-height: 520px;
  margin-bottom: 28px;
  padding: 28px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 24px;
  transform: translateY(var(--stack-shift)) scale(var(--stack-scale));
  transform-origin: center top;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card-make {
  top: 24px;
  z-index: 1;
  background: #e9e5dd;
  color: #514d45;
}

.feature-card-copy {
  top: 40px;
  z-index: 2;
  background: #dfe8ed;
  color: #31566a;
}

.feature-card-info {
  top: 24px;
  z-index: 3;
  background: #e2e6d4;
  color: #4d5938;
}

.feature-card-plugins {
  top: 40px;
  z-index: 4;
  background: #e6e0eb;
  color: #594b68;
}

.feature-number {
  position: absolute;
  top: 34px;
  right: 28px;
  color: currentColor;
  font-size: clamp(112px, 34vw, 190px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.09em;
  opacity: 0.14;
  user-select: none;
}

.feature-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
}

.feature-eyebrow {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-eyebrow-make,
.feature-eyebrow-copy,
.feature-eyebrow-info,
.feature-eyebrow-plugins {
  color: currentColor;
  opacity: 0.72;
}

.feature-card h3 {
  margin-left: -0.035em;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.052em;
}

.feature-description {
  max-width: 760px;
  margin-top: 20px;
  color: currentColor;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  opacity: 0.75;
  text-wrap: pretty;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-tags li {
  padding: 8px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.78;
}

.plugin-showcase {
  max-width: 1040px;
  padding-block: 42px 180px;
}

.plugin-grid-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-align: center;
}

.plugin-grid-subtitle {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  text-wrap: balance;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 72px;
  gap: 62px 24px;
}

.plugin-tile:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.plugin-tile {
  display: flex;
  min-width: 0;
  min-height: 216px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plugin-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--color-ink);
  font-size: 46px;
  line-height: 1;
}

.plugin-icon::after {
  position: absolute;
  right: 2px;
  bottom: 4px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--color-paper);
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
}

.plugin-tile h3 {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plugin-tile > p {
  max-width: 18em;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
  text-wrap: pretty;
}

.plugin-tier-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.plugin-tier {
  display: inline-flex;
  min-height: 20px;
  margin-top: 10px;
  padding-inline: 9px;
  align-items: center;
  border-radius: 999px;
  background: #e5e2da;
  color: #716d64;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.plugin-tier-group .plugin-tier {
  margin-top: 0;
}

.plugin-tier-free {
  background: #e5e2da;
}

.plugin-tier-soon {
  background: #e6e0eb;
  color: #665875;
}

.plugin-download-callout {
  display: grid;
  margin-top: 82px;
  padding-top: 32px;
  gap: 26px;
  border-top: 1px solid var(--color-line);
}

.plugin-download-callout h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plugin-download-callout p {
  max-width: 540px;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.plugin-download-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 22px;
}

.plugin-download-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #bbb7ad;
  text-underline-offset: 4px;
}

.plugin-download-links a:hover {
  color: var(--color-accent);
}

.plugin-download-links i {
  font-size: 14px;
  text-decoration: none;
}

.privacy {
  display: flex;
  min-height: 680px;
  max-width: 1280px;
  padding-block: 72px 140px;
  flex-direction: column;
  align-items: center;
  color: var(--color-ink);
  text-align: center;
}

.privacy-kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.privacy h2 {
  max-width: 1280px;
  margin-top: 64px;
  font-size: clamp(43px, 12vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

[lang="zh-CN"] .privacy h2 {
  line-height: 1.08;
}

.privacy-summary {
  max-width: 600px;
  margin-top: 76px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.seo-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 0;
  max-width: 1040px;
  padding: 132px clamp(34px, 10vw, 140px) 156px;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: #11110f;
  color: #f8f4ec;
  text-align: left;
}

.seo-copy::before,
.seo-copy::after {
  position: absolute;
  inset: 24px 0;
  z-index: -1;
  content: "";
  -webkit-mask-image: radial-gradient(ellipse closest-side at center, #000 38%, rgba(0, 0, 0, 0.9) 58%, transparent 100%);
  mask-image: radial-gradient(ellipse closest-side at center, #000 38%, rgba(0, 0, 0, 0.9) 58%, transparent 100%);
}

.seo-copy::before {
  background: #2b2521 url("../assets/finder-workflow-background.webp?v=67894106") center / cover no-repeat;
  filter: saturate(0.82) brightness(0.68);
}

.seo-copy::after {
  background: rgba(17, 15, 14, 0.22);
}

.seo-copy .section-kicker {
  color: rgba(248, 244, 236, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.seo-copy h2 {
  max-width: 720px;
  margin-top: 28px;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
}

[lang="zh-CN"] .seo-copy h2 {
  line-height: 1.2;
}

.seo-copy-body {
  max-width: 700px;
  margin-top: 48px;
}

.seo-copy-body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24);
  text-wrap: pretty;
}

.site-footer {
  display: flex;
  min-height: 720px;
  width: calc(100% - 32px);
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 180px 70px;
}

.footer-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  object-fit: contain;
}

.footer-tagline {
  margin-left: -0.03em;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.footer-actions {
  gap: 10px;
  margin-top: 24px;
}

.footer-actions .button-primary {
  gap: 7px;
}

.button-secondary {
  gap: 7px;
  padding-inline: 16px;
  background: #e4e1d9;
  color: #4f4c45;
}

.button-secondary:hover {
  background: #d9d5cb;
}

.button-secondary i {
  font-size: 15px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 22px;
  color: #858178;
  font-size: 10px;
  font-weight: 500;
}

.footer-meta a {
  text-decoration: underline;
  text-decoration-color: #c4c0b5;
  text-underline-offset: 3px;
}

.footer-meta a:hover {
  color: var(--color-ink);
}

.footer-downloads {
  display: inline-flex;
  min-width: 72px;
  min-height: 1.2em;
  align-items: center;
}

.footer-downloads[hidden] {
  display: none;
}

.footer-downloads-skeleton {
  display: none;
}

.footer-downloads.is-loading .footer-downloads-skeleton {
  display: block;
  width: 64px;
  height: 0.7em;
  border-radius: 999px;
  background: #d8d4cc;
}

.plugin-docs-main {
  padding-bottom: 80px;
}

.plugin-docs-hero {
  padding-block: 76px 84px;
  text-align: center;
}

.plugin-docs-eyebrow,
.plugin-section-index,
.plugin-code-label,
.plugin-docs-toc > p {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plugin-docs-hero h1 {
  max-width: 830px;
  margin: 20px auto 0;
  font-size: clamp(44px, 9vw, 70px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.plugin-docs-lede {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--color-muted);
  font-size: clamp(18px, 3.5vw, 23px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.plugin-docs-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.plugin-docs-actions {
  margin-top: 22px;
}

.plugin-docs-actions .button-primary {
  gap: 8px;
}

.plugin-warning i {
  flex: 0 0 auto;
  margin-top: 0.1em;
  font-size: 16px;
}

.plugin-docs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 60px;
}

.plugin-docs-toc {
  display: none;
}

.plugin-docs-content {
  min-width: 0;
  max-width: 760px;
}

.plugin-doc-section {
  padding-block: 60px;
  border-top: 1px solid var(--color-line);
  scroll-margin-top: 24px;
}

.plugin-doc-section:first-child {
  border-top-color: var(--color-ink);
}

.plugin-doc-section h2 {
  max-width: 700px;
  margin-top: 14px;
  margin-left: -0.035em;
  font-size: clamp(31px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.plugin-doc-section h3 {
  margin-top: 34px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.plugin-doc-section > p:not(.plugin-section-index, .plugin-section-lede, .plugin-callout, .plugin-warning, .plugin-code-label) {
  max-width: 68ch;
  margin-top: 16px;
  color: #5f5b53;
  font-size: 15px;
  line-height: 1.7;
}

.plugin-section-lede {
  max-width: 68ch;
  margin-top: 22px;
  color: #5f5b53;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.plugin-principles {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--color-line);
}

.plugin-principles > div {
  padding-block: 26px;
  border-bottom: 1px solid var(--color-line);
}

.plugin-principles i {
  color: var(--color-accent);
  font-size: 22px;
}

.plugin-principles h3 {
  margin-top: 16px;
}

.plugin-principles p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.plugin-callout,
.plugin-warning {
  margin-top: 28px;
  padding: 18px 20px;
  border-inline-start: 3px solid var(--color-accent);
  background: #ece9e1;
  color: #57534b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.plugin-warning {
  display: flex;
  gap: 12px;
  border-inline-start-color: #8c572b;
  background: #eee3d7;
  color: #684729;
}

.plugin-code-label {
  margin-top: 34px;
  color: var(--color-muted);
}

.plugin-code-block {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #373732;
  border-radius: 14px;
  background: #22221f;
  color: #f5f0e8;
}

.plugin-code-label + .plugin-code-block {
  margin-top: 10px;
}

.plugin-code-block pre {
  margin: 0;
  padding: 24px 76px 24px 22px;
  overflow-x: auto;
  font: 500 12px/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  tab-size: 2;
  -webkit-overflow-scrolling: touch;
}

.plugin-code-block code {
  font: inherit;
  white-space: pre;
}

.plugin-agent-prompt code {
  white-space: pre-wrap;
}

.plugin-agent-option {
  margin-top: 40px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #ece9e1;
}

.plugin-agent-option summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 64px;
  padding: 14px 18px;
  align-items: center;
  gap: 10px 14px;
  list-style: none;
  cursor: pointer;
}

.plugin-agent-option summary::-webkit-details-marker {
  display: none;
}

.plugin-agent-kicker {
  padding: 5px 8px;
  border-radius: 999px;
  background: #ddd8cd;
  color: var(--color-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.plugin-agent-option summary strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plugin-agent-option summary i {
  color: var(--color-muted);
  font-size: 19px;
  transition: transform 180ms ease;
}

.plugin-agent-option[open] summary i {
  transform: rotate(180deg);
}

.plugin-agent-content {
  padding: 0 18px 20px;
  border-top: 1px solid var(--color-line);
}

.plugin-agent-content > p {
  max-width: 68ch;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

.plugin-agent-content .plugin-code-block {
  margin-top: 18px;
}

.code-copy {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  min-height: 32px;
  padding-inline: 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #34342f;
  color: #d8d3ca;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.code-copy:hover {
  background: #45453f;
  color: #fffaf2;
}

.code-copy:active {
  transform: scale(0.98);
}

.code-copy.is-copied {
  color: #d8e7c8;
}

.plugin-code-tree pre {
  color: #d8d3ca;
}

.plugin-steps {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.plugin-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  padding-block: 18px;
  gap: 14px;
  border-top: 1px solid var(--color-line);
}

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

.plugin-steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-cream);
  font-size: 10px;
  font-weight: 800;
}

.plugin-steps p {
  color: #5f5b53;
  font-size: 14px;
  line-height: 1.65;
}

.plugin-flow {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-cream);
  color: #5f5b53;
  font: 600 12px/1.8 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  overflow-wrap: anywhere;
}

.plugin-capabilities,
.plugin-diagnostics-table {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--color-line);
}

.plugin-capabilities > div,
.plugin-diagnostics-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-block: 17px;
  gap: 8px;
  border-bottom: 1px solid var(--color-line);
}

.plugin-capabilities code,
.plugin-diagnostics-table code {
  color: #684729;
  font: 600 11px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  overflow-wrap: anywhere;
}

.plugin-capabilities span,
.plugin-diagnostics-table span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.plugin-resource-links {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--color-line);
}

.plugin-resource-links a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  padding-block: 20px;
  align-items: center;
  gap: 4px 12px;
  border-bottom: 1px solid var(--color-line);
  transition: color 150ms ease, padding-inline 150ms ease;
}

.plugin-resource-links a:hover {
  padding-inline: 8px;
  color: var(--color-accent);
}

.plugin-resource-links i {
  grid-row: 1 / span 2;
  font-size: 20px;
}

.plugin-resource-links span {
  font-size: 14px;
  font-weight: 700;
}

.plugin-resource-links code {
  color: var(--color-muted);
  font: 500 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

@media (max-width: 639px) {
  .primary-nav .nav-updates {
    display: none;
  }

  .primary-nav .nav-github-stars {
    display: none;
  }

  .nav-github-bracket {
    transform: translateY(-0.05em);
  }

  .nav-github-star {
    transform: translateY(-0.04em);
  }

  .nav-github-stars [data-github-stars] {
    display: inline-flex;
    transform: translateY(0.04em);
  }
}

@media (max-width: 359px) {
  .primary-nav .nav-github {
    display: none;
  }

  .plugin-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 640px) {
  .primary-nav {
    gap: 28px;
  }

  .primary-nav .nav-features {
    display: flex;
  }

  .hero {
    padding-block: 96px 220px;
  }

  .app-icon {
    width: 88px;
    height: 88px;
  }

  .hero h1 {
    max-width: 980px;
    font-size: 66px;
    line-height: 1.1;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-lede {
    font-size: 29px;
    line-height: 1.3;
  }

  .hero-visual {
    margin-top: 118px;
  }

  .hero-visual img {
    border-radius: 26px;
  }

  .features {
    padding-bottom: 240px;
  }

  .feature-card {
    top: 72px;
    min-height: 560px;
    margin-bottom: 32px;
    padding: 44px;
    border-radius: 28px;
  }

  .feature-card-copy {
    top: 96px;
  }

  .feature-card-info {
    top: 72px;
  }

  .feature-card-plugins {
    top: 96px;
  }

  .plugin-showcase {
    padding-bottom: 240px;
  }

  .plugin-download-callout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 48px;
  }

  .plugin-download-links {
    max-width: 390px;
    justify-content: flex-end;
  }

  .feature-number {
    top: 48px;
    right: 52px;
    font-size: clamp(180px, 22vw, 260px);
  }

  .feature-card h3 {
    font-size: 52px;
  }

  .feature-description {
    font-size: 20px;
  }

  .feature-tags {
    gap: 10px;
    margin-top: 26px;
  }

  .feature-tags li {
    padding: 9px 15px;
    font-size: 13px;
  }

  .privacy {
    min-height: 860px;
    padding-block: 90px 170px;
  }

  .privacy-kicker {
    font-size: 17px;
  }

  .privacy h2 {
    margin-top: 80px;
    font-size: clamp(76px, 8.3vw, 120px);
    line-height: 0.94;
  }

  .privacy-summary {
    max-width: 640px;
    margin-top: 110px;
    font-size: 20px;
  }

  .seo-copy {
    min-height: 0;
    padding-block: 164px 198px;
    border-radius: 28px;
  }

  .seo-copy .section-kicker {
    font-size: 13px;
  }

  .seo-copy h2 {
    margin-top: 32px;
    font-size: 42px;
    line-height: 1.16;
  }

  .seo-copy-body {
    margin-top: 56px;
  }

  .seo-copy-body p {
    font-size: 17px;
  }

  .site-footer {
    min-height: 900px;
    padding-bottom: 96px;
  }

  .footer-tagline {
    font-size: 46px;
  }

  .plugin-docs-hero {
    padding-block: 112px 118px;
  }

  .plugin-docs-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 64px;
  }

  .plugin-docs-toc {
    position: sticky;
    top: 24px;
    display: block;
    height: max-content;
    padding-top: 18px;
    border-top: 1px solid var(--color-ink);
  }

  .plugin-docs-toc nav {
    display: grid;
    margin-top: 17px;
    gap: 2px;
  }

  .plugin-docs-toc a {
    padding-block: 6px;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
  }

  .plugin-docs-toc a:hover {
    color: var(--color-ink);
  }

  .plugin-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plugin-principles > div {
    padding: 30px 28px 30px 0;
  }

  .plugin-principles > div + div {
    padding-inline: 28px 0;
    border-inline-start: 1px solid var(--color-line);
  }

  .plugin-capabilities > div,
  .plugin-diagnostics-table > div {
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 200px;
  }

  .features {
    padding-bottom: 200px;
  }

  .plugin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px 42px;
  }

  .plugin-tile:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .feature-card {
    --stack-scale: 1 !important;
  }
}
