:root {
  --ink:#192c25;
  --muted:#66746d;
  --paper:#f8f9f5;
  --line:#dfe4dc;
  --lime:#dcf995;
  --white:#fff;
  --radius:16px;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-synthesis:none;
  scroll-behavior:smooth;
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input,select {
  font:inherit;
}
button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline:3px solid #4c792c;
  outline-offset:4px;
}
button {
  cursor:pointer;
}
button:disabled {
  cursor:wait;
}
h1,h2,h3,p {
  margin-top:0;
}
h1,h2,h3 {
  letter-spacing:-.045em;
}
h2 {
  font-size:32px;
  line-height:1.2;
  font-weight:600;
}
p {
  line-height:1.65;
}
.wrap {
  width:min(1180px,calc(100% - 80px));
  margin-inline:auto;
}
.header {
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:23px;
  letter-spacing:-1px;
  white-space:nowrap;
}
.brand-mark {
  display:grid;
  place-items:center;
  width:33px;
  height:33px;
  background:var(--ink);
  color:var(--lime);
  border-radius:9px;
  font-size:31px;
  line-height:1;
}
.beta {
  align-self:center;
  margin-left:6px;
  background:#e9ede5;
  border:1px solid var(--line);
  border-radius:5px;
  padding:3px 5px;
  font-size:9px;
  letter-spacing:.8px;
  font-weight:600;
}
.header nav {
  display:flex;
  align-items:center;
  gap:30px;
  font-size:13px;
  font-weight:550;
}
.header nav a {
  padding:12px 0;
}
.header nav a:hover,.text-link:hover {
  color:#426a24;
}
.active {
  border-bottom:2px solid var(--ink);
}
.hero {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:72px;
  align-items:center;
  padding-block:76px 64px;
}
.eyebrow {
  font-size:10px;
  font-weight:700;
  letter-spacing:1.8px;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:9px;
}
.dot {
  display:inline-block;
  width:7px;
  height:7px;
  flex-shrink:0;
  border-radius:50%;
  background:#659b48;
}
.hero h1 {
  font-size:clamp(46px,5vw,65px);
  font-weight:550;
  line-height:1.08;
  margin-bottom:24px;
  letter-spacing:-3.5px;
}
.hero h1 em {
  font-style:normal;
  position:relative;
  isolation:isolate;
  white-space:nowrap;
}
.hero h1 em:after {
  content:"";
  position:absolute;
  z-index:-1;
  background:var(--lime);
  height:39%;
  bottom:4%;
  left:-3px;
  right:-7px;
  transform:rotate(-3deg);
}
.hero-description {
  font-size:16px;
  color:var(--muted);
  margin-bottom:28px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  min-height:46px;
  padding:12px 20px;
  border:1px solid transparent;
  border-radius:8px;
  font-size:13px;
  font-weight:650;
  transition:background .15s,transform .15s;
}
.button:hover {
  transform:translateY(-1px);
}
.primary {
  background:var(--ink);
  color:var(--white);
}
.primary:hover {
  background:#31523f;
}
.primary span {
  color:var(--lime);
}
.secondary {
  background:var(--white);
  border-color:var(--line);
}
.secondary:hover {
  background:#eef2e9;
}
.terminal {
  background:#172a24;
  color:#dfe8dc;
  border:1px solid #354a3e;
  border-radius:var(--radius);
  box-shadow:0 22px 50px -30px #0f261b77;
  transform:rotate(1deg);
  font:12px/1.8 ui-monospace,SFMono-Regular,Consolas,monospace;
}
.terminal-top {
  border-bottom:1px solid #35473f;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#b7c4bc;
  font-size:10px;
}
.terminal-top i {
  width:7px;
  height:7px;
  border-radius:50%;
  background:#6b7b71;
  display:inline-block;
  margin-right:5px;
}
.terminal-top i:first-child {
  background:#d0daae;
}
.terminal-body {
  padding:22px 25px 18px;
}
.terminal-body p {
  margin-bottom:18px;
}
.terminal pre {
  margin:0 0 22px;
  font:inherit;
  white-space:pre-wrap;
}
.code-key {
  color:#b1c3b7;
}
.code-string,.lime {
  color:var(--lime);
}
.muted {
  color:#9cac9f;
  margin-right:15px;
}
.terminal-bottom {
  font-size:10px;
  border-top:1px solid #35473f;
  padding-top:14px;
  display:flex;
  gap:9px;
  align-items:center;
  color:#b7c4bc;
}
.terminal-bottom .dot {
  background:var(--lime);
  width:5px;
  height:5px;
}
.principles {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:11px;
  color:var(--muted);
}
.principles span {
  display:flex;
  gap:10px;
  align-items:center;
}
.principles strong {
  color:var(--ink);
  font-weight:600;
}
.catalog {
  padding-block:66px 64px;
  scroll-margin-top:24px;
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:28px;
  gap:20px;
}
.section-heading .eyebrow {
  margin-bottom:13px;
  color:var(--muted);
}
.section-heading h2 {
  margin-bottom:0;
}
.text-link {
  font-size:12px;
  font-weight:650;
}
.toolbar {
  display:flex;
  gap:12px;
  align-items:stretch;
}
.search {
  flex:1;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:9px;
  display:flex;
  align-items:center;
  padding:0 14px;
  gap:10px;
}
.search>span:first-child {
  font-size:25px;
  color:var(--muted);
}
.search input {
  width:100%;
  min-width:0;
  border:0;
  background:none;
  padding:15px 0;
  font-size:13px;
  color:var(--ink);
}
.search input:focus {
  outline:0;
}
.search:focus-within {
  outline:2px solid #659b48;
  outline-offset:2px;
}
kbd {
  border:1px solid var(--line);
  border-radius:4px;
  padding:1px 6px;
  font-size:11px;
  color:var(--muted);
}
.select-label {
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:9px;
  padding:6px 12px;
  background:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
}
select {
  font-size:12px;
  color:var(--ink);
  background:transparent;
  border:0;
  padding:0 18px 0 0;
  max-width:180px;
}
.filters {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:20px;
}
.filter {
  border:1px solid var(--line);
  border-radius:25px;
  padding:8px 16px;
  background:transparent;
  color:var(--muted);
  font-size:12px;
}
.filter:hover {
  background:#eef2e9;
}
.filter.selected {
  background:var(--ink);
  color:white;
  border-color:var(--ink);
}
.results-count {
  font-size:11px;
  color:var(--muted);
  margin:26px 0 16px;
}
.cards {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.card {
  position:relative;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--white);
  padding:24px 24px 0;
  display:flex;
  flex-direction:column;
  transition:border-color .15s,box-shadow .15s;
}
.card:hover {
  border-color:#9eb18f;
  box-shadow:0 6px 20px #1b342408;
}
.card-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}
.skill-icon {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  font-size:26px;
  background:#edf3df;
  border-radius:11px;
  color:#53732d;
}
.skill-icon.desenvolvimento {
  background:#e9edf8;
  color:#627299;
}
.skill-icon.produtividade {
  background:#fbefe1;
  color:#9b7848;
}
.version {
  font:10px ui-monospace,monospace;
  border:1px solid var(--line);
  border-radius:5px;
  padding:5px 7px;
  color:var(--muted);
}
.card-category {
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-weight:700;
  color:var(--muted);
  margin-bottom:7px;
}
.card h3 {
  font-size:21px;
  line-height:1.3;
  margin-bottom:10px;
  font-weight:600;
}
.card h3 a:after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
}
.card-description {
  font-size:12px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:20px;
  flex:1;
}
.tags {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.tag {
  font-size:9px;
  background:#f3f5f0;
  color:#58675d;
  padding:5px 8px;
  border-radius:4px;
}
.card-bottom {
  display:flex;
  justify-content:space-between;
  gap:10px;
  border-top:1px solid var(--line);
  margin-top:24px;
  padding:15px 0;
  font-size:10px;
  color:var(--muted);
}
.card-bottom span:last-child {
  color:var(--ink);
  font-weight:600;
}
.empty {
  text-align:center;
  padding:48px;
  border:1px dashed var(--line);
  border-radius:12px;
}
.empty p {
  color:var(--muted);
  font-size:14px;
}
.how {
  border-top:1px solid var(--line);
  padding-block:50px 60px;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
}
.how .eyebrow {
  color:var(--muted);
}
.how h2 {
  font-size:30px;
}
.how ol {
  list-style:none;
  padding:0;
  margin:0;
}
.how li {
  display:flex;
  gap:22px;
  margin-bottom:22px;
}
.how li:last-child {
  margin-bottom:0;
}
.how li>span {
  font:11px ui-monospace,monospace;
  background:#eaf0e2;
  height:33px;
  width:33px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex-shrink:0;
}
.how h3 {
  font-size:15px;
  margin:0 0 4px;
  letter-spacing:-.3px;
}
.how p {
  font-size:12px;
  color:var(--muted);
  margin:0;
}
.footer {
  padding-block:26px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
}
.footer .brand {
  font-size:16px;
}
.footer .brand-mark {
  width:25px;
  height:25px;
  font-size:23px;
  border-radius:6px;
}
.footer p,.footer>a:last-child {
  font-size:10px;
  color:var(--muted);
  margin:0;
}
.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 {
  position:absolute;
  top:-100px;
  left:12px;
  background:var(--ink);
  color:white;
  padding:12px;
  z-index:10;
}
.skip:focus {
  top:12px;
}
[hidden] {
  display:none!important;
}
.detail {
  padding-block:36px 64px;
}
.back {
  font-size:12px;
  color:var(--muted);
}
.detail-heading {
  padding-block:40px 32px;
  max-width:800px;
}
.detail-heading h1,.doc h1 {
  font-size:48px;
  line-height:1.15;
  margin-bottom:18px;
}
.detail-description {
  font-size:17px;
  color:var(--muted);
}
.detail-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:28px;
}
.panel {
  border:1px solid var(--line);
  border-radius:12px;
  background:white;
  padding:26px;
  margin-bottom:20px;
  overflow:hidden;
}
.panel h2 {
  font-size:22px;
  margin-bottom:20px;
}
.panel h3 {
  font-size:15px;
}
.panel p,.panel li {
  font-size:13px;
  color:var(--muted);
  line-height:1.7;
}
.panel ul {
  padding-left:20px;
}
.panel-heading {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}
.panel-heading a {
  font-size:11px;
  white-space:nowrap;
}
.instructions {
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  font:12px/1.9 ui-monospace,monospace;
  color:#425a4b;
  margin:0;
}
.install-panel {
  position:sticky;
  top:24px;
  background:#f0f4e9;
}
.install-panel .eyebrow {
  font-size:9px;
}
.install-panel .button {
  width:100%;
  margin-top:10px;
  gap:12px;
}
.install-panel dl {
  margin:24px 0;
}
.install-panel dl div {
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-bottom:13px;
  font-size:12px;
}
.install-panel dt {
  color:var(--muted);
}
.install-panel dd {
  margin:0;
  text-align:right;
}
.small,.panel .small {
  font-size:11px;
  line-height:1.7;
  color:var(--muted);
  margin-top:18px;
}
.install-panel hr {
  border:0;
  border-top:1px solid #d5ddcc;
  margin:24px 0;
}
.checksum-label {
  font-size:10px;
  font-weight:650;
}
.prompt-install {
  margin: 20px 0 12px;
  border: 1px solid #c4d3b4;
  border-radius: 8px;
  background: #fff;
}
.prompt-install summary {
  padding: 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  border-radius: 8px;
  background: var(--lime);
}
.prompt-install summary:focus-visible {
  outline: 3px solid #4c792c;
  outline-offset: 3px;
}
.prompt-install[open] {
  padding: 0 14px 14px;
}
.prompt-install[open] summary {
  margin: 0 -14px;
  border-radius: 8px 8px 0 0;
}
.install-prompt {
  display: block;
  width: 100%;
  min-height: 200px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: 12px/1.7 ui-sans-serif, system-ui, sans-serif;
  resize: vertical;
}
.copy-status:empty {
  display: none;
}
.checksum {
  display:block;
  width:100%;
  resize:none;
  background:#e6eddd;
  border:0;
  border-radius:6px;
  padding:10px;
  margin-top:9px;
  font:11px/1.7 ui-monospace,monospace;
  color:#42513a;
  overflow-wrap:anywhere;
}
.versions {
  list-style:none;
  padding:0!important;
}
.versions li {
  padding:16px 0;
  border-top:1px solid var(--line);
}
.versions a {
  font-weight:600;
  color:var(--ink);
}
.versions span {
  float:right;
  font-size:10px;
}
.versions p {
  margin:8px 0 0;
  font-size:12px;
}
.doc {
  max-width:850px;
  padding-block:48px 64px;
}
.doc>section {
  margin:40px 0;
}
.doc p,.doc li {
  font-size:14px;
  line-height:1.85;
  color:var(--muted);
}
.doc h2 {
  font-size:26px;
}
.doc h3 {
  font-size:19px;
}
.doc a:not(.button) {
  text-decoration:underline;
  text-underline-offset:3px;
}
.code-block {
  background:#172a24;
  color:#dcf995;
  padding:20px;
  border-radius:10px;
  overflow:auto;
  font:12px/1.9 ui-monospace,monospace;
  white-space:pre;
}
.table-scroll {
  overflow:auto;
}
.doc table {
  width:100%;
  border-collapse:collapse;
  font-size:12px;
  text-align:left;
}
.doc td,.doc th {
  padding:13px;
  border-bottom:1px solid var(--line);
}
.doc td code {
  white-space:nowrap;
}
.notice {
  padding:15px;
  background:#fbefe1;
  border-radius:8px;
}
@media(min-width:1450px) {
  .hero {
    padding-block:90px 80px;
  }
  .hero h1 {
    font-size:72px;
  }
}
@media(max-width:950px) {
  .wrap {
    width:calc(100% - 48px);
  }
  .hero {
    gap:30px;
    padding-block:50px;
  }
  .hero h1 {
    font-size:52px;
  }
  .hero-description {
    font-size:14px;
  }
  .terminal-body {
    padding:18px;
  }
  .principles span {
    display:block;
    line-height:1.9;
  }
  .principles strong {
    display:block;
  }
  .cards {
    gap:12px;
  }
  .card {
    padding:20px 18px 0;
  }
  .detail-layout {
    grid-template-columns:minmax(0,1fr) 290px;
    gap:18px;
  }
  .panel {
    padding:20px;
  }
  .terminal-top {
    font-size:8px;
  }
  .terminal {
    font-size:11px;
  }
}
@media(max-width:700px) {
  .wrap {
    width:calc(100% - 36px);
  }
  .header {
    height:auto;
    min-height:76px;
    padding-block:16px;
    flex-wrap:wrap;
    gap:12px;
  }
  .header nav {
    width:100%;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:8px 12px;
    font-size:11px;
  }
  .brand {
    font-size:20px;
  }
  .beta {
    display:none;
  }
  .hero {
    grid-template-columns:1fr;
    gap:35px;
    padding-block:44px 38px;
  }
  .hero h1 {
    font-size:clamp(36px,11.5vw,56px);
    letter-spacing:-2.5px;
  }
  .hero>* {
    min-width:0;
  }
  .hero-description {
    font-size:15px;
  }
  .terminal {
    transform:none;
    font-size:12px;
  }
  .terminal-top {
    font-size:9px;
  }
  .terminal-body {
    padding:22px;
  }
  .principles {
    gap:10px;
    font-size:9px;
    padding-block:16px;
  }
  .principles strong {
    font-size:10px;
  }
  .catalog {
    padding-block:44px;
  }
  .section-heading {
    display:block;
  }
  .section-heading h2 {
    font-size:28px;
    margin-bottom:14px;
  }
  .toolbar {
    flex-wrap:wrap;
  }
  .search {
    flex-basis:100%;
  }
  .select-label {
    flex:1;
    min-height:48px;
  }
  .filters {
    gap:6px;
  }
  .filter {
    padding:7px 12px;
    font-size:11px;
  }
  .cards {
    grid-template-columns:1fr;
  }
  .card {
    padding:24px 24px 0;
  }
  .card-description {
    font-size:13px;
  }
  .card h3 {
    font-size:23px;
  }
  .card-top {
    margin-bottom:18px;
  }
  .how {
    grid-template-columns:1fr;
    gap:30px;
    padding-block:38px;
  }
  .how h2 {
    font-size:28px;
  }
  .footer {
    flex-wrap:wrap;
    gap:16px;
  }
  .footer p {
    order:3;
    width:100%;
  }
  .detail-heading h1,.doc h1 {
    font-size:38px;
  }
  .detail-layout {
    display:flex;
    flex-direction:column-reverse;
  }
  .install-panel {
    position:static;
  }
  .detail-heading {
    padding-top:30px;
  }
  .panel-heading {
    align-items:start;
  }
  .panel-heading h2 {
    font-size:19px;
  }
  .versions span {
    float:none;
    display:block;
  }
  .doc {
    padding-top:36px;
  }
  .doc h2 {
    font-size:24px;
  }
}
@media(prefers-reduced-motion:reduce) {
  :root {
    scroll-behavior:auto;
  }
  * {
    transition:none!important;
  }
}
