:root {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #152257;
  background: #fbf9fe;
  font-synthesis: none;
  --navy: #152257;
  --purple: #672074;
  --magenta: #c7027f;
  --orange: #e2572e;
  --blue: #7ba5d9;
  --muted: #59617c;
  --surface: #fff;
  --line: #dedbe9;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid #7ba5d9;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
}
.shell {
  max-width: 1160px;
  margin: auto;
  padding-left: 32px;
  padding-right: 32px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -1.5px;
}
.logo img {
  width: 44px;
}
.dot {
  color: var(--orange);
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
}
nav a {
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px #67207416;
}
.button:hover {
  background: #8b2a88;
}
.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: #b7acc6;
  box-shadow: none;
}
.button.secondary:hover {
  background: #eee5f4;
}
.button.small {
  padding: 11px 16px;
  font-size: 13px;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 90px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.9px;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
}
.status-dot,
.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--orange);
  flex-shrink: 0;
}
h1 {
  font-size: clamp(46px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -3.6px;
  margin: 0 0 28px;
  font-weight: 850;
}
h1 span {
  color: var(--purple);
}
.lead {
  font-size: 22px;
  font-weight: 650;
  line-height: 1.4;
  max-width: 470px;
}
.intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.micro {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.7;
}
.hero-art {
  position: relative;
  padding: 30px 0;
}
.hero-art > img {
  position: relative;
  transform: rotate(-5deg);
  filter: drop-shadow(0 24px 20px #15225720);
}
.art-orbit {
  position: absolute;
  inset: -40px -10px;
  background: radial-gradient(
    ellipse,
    #d9b9e580 0%,
    #f4dce66b 45%,
    transparent 70%
  );
}
.little-note {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px 19px;
  font-size: 13px;
  font-weight: 650;
  width: max-content;
  max-width: 100%;
  margin: 18px auto 0;
  box-shadow: 0 12px 30px #1522570c;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ribbon {
  background: #152257;
  color: #f9efff;
}
.ribbon .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-weight: 650;
  font-size: 15px;
}
.ribbon span:before {
  content: "✦";
  color: #f7a1cb;
  padding-right: 12px;
}
.features {
  padding-top: 84px;
  padding-bottom: 76px;
}
h2 {
  font-size: clamp(30px, 3.6vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.4px;
  margin: 19px 0 12px;
}
.section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 38px;
}
.feature-grid article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.feature-grid p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
}
.orange {
  background: #ffebe4;
  color: #a13b1d;
}
.pink {
  background: #fce1f1;
  color: #9a1267;
}
.blue {
  background: #e1edfc;
  color: #28538c;
}
.purple {
  background: #eee1f5;
  color: #672074;
}
.getting-started {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 82px;
}
.getting-started p,
.community p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.text-link {
  display: inline-block;
  font-weight: 750;
  margin-top: 12px;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.terminal {
  background: #171e37;
  color: #e9ecf9;
  border: 1px solid #414866;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px #15225717;
}
.terminal-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 17px 20px;
  border-bottom: 1px solid #414866;
  font-size: 12px;
  color: #b7bfd9;
}
.terminal-top i {
  width: 9px;
  height: 9px;
  background: #e2572e;
  border-radius: 50%;
}
.terminal-top i:nth-child(2) {
  background: #c7027f;
}
.terminal-top i:nth-child(3) {
  background: #7ba5d9;
}
.terminal-top span {
  margin-left: 8px;
}
pre {
  margin: 0;
  padding: 28px 22px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.9;
}
.terminal p {
  border-top: 1px solid #414866;
  color: #bbc4e1;
  font-size: 12px;
  margin: 0;
  padding: 15px 22px;
}
.community {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.community > div:last-child {
  max-width: 760px;
}
.community-mark {
  padding-top: 4px;
}
.community-mark img {
  transform: rotate(-9deg);
}
.fine-print {
  padding-top: 48px;
  padding-bottom: 48px;
}
.fine-print h2 {
  font-size: 20px;
  letter-spacing: -0.4px;
}
.fine-print p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 930px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 30px;
  font-size: 12px;
  border-top: 1px solid var(--line);
}
.muted {
  color: var(--muted);
  margin-left: 10px;
}
@media (prefers-color-scheme: dark) {
  :root {
    color: #e8ecff;
    background: #101426;
    --navy: #e8ecff;
    --purple: #e1a2ec;
    --muted: #b6bfd9;
    --surface: #202840;
    --line: #36405d;
  }
  .button {
    background: #672074;
    border-color: #a468b0;
  }
  .button.secondary {
    color: #e8ecff;
    border-color: #65567b;
  }
  .button.secondary:hover {
    background: #30223d;
  }
  .art-orbit {
    background: radial-gradient(ellipse, #67207455, transparent 70%);
  }
  .ribbon {
    background: #20234c;
  }
  .terminal {
    box-shadow: none;
  }
}
@media (max-width: 900px) {
  .hero {
    gap: 18px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .getting-started {
    gap: 32px;
  }
  .ribbon .shell {
    font-size: 13px;
  }
  h1 {
    letter-spacing: -2.5px;
  }
}
@media (max-width: 680px) {
  .shell {
    padding-left: 22px;
    padding-right: 22px;
  }
  header {
    gap: 15px;
    flex-wrap: wrap;
  }
  nav {
    gap: 18px;
    font-size: 12px;
  }
  nav > a:first-child {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .hero-art {
    max-width: 440px;
    margin: auto;
    padding-top: 12px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .ribbon .shell {
    flex-direction: column;
    gap: 14px;
  }
  .features {
    padding-top: 54px;
    padding-bottom: 30px;
  }
  .feature-grid {
    gap: 20px;
  }
  .getting-started {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 48px;
  }
  .community {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .community-mark img {
    width: 54px;
  }
  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
  .muted {
    display: block;
    margin: 8px 0 0;
  }
  .lead {
    font-size: 20px;
  }
  .intro {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
}

.screenshot-gallery {
  padding-top: 24px;
  padding-bottom: 80px;
  scroll-margin-top: 32px;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.screenshot-grid figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.screenshot-grid figure > a {
  display: block;
}
.screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  border-bottom: 1px solid var(--line);
}
.screenshot-grid figcaption {
  padding: 24px;
}
.screenshot-grid h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 12px;
}
.screenshot-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.screenshot-grid figcaption a {
  font-weight: 700;
  text-underline-offset: 4px;
}
@media (max-width: 800px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}
