:root {
  color-scheme:light;
  --paper:#f5f3ef;
  --card:#fffefa;
  --ink:#20272d;
  --muted:#60707b;
  --line:#dedfdc;
  --accent:#466677;
  --accent-soft:#e5ecee;
  --radius:22px;
  --shadow:0 18px 38px -24px rgba(30,42,50,.22),0 2px 6px rgba(30,42,50,.04)
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
  -webkit-font-smoothing:antialiased
}
a {
  color:inherit
}
button {
  font:inherit
}
.wrap {
  width:min(1160px,calc(100% - 48px));
  margin-inline:auto
}
.skip-link {
  position:absolute;
  top:-60px;
  left:16px;
  z-index:20;
  padding:12px 18px;
  background:var(--ink);
  color:#fff
}
.skip-link:focus {
  top:12px
}
:focus-visible {
  outline:3px solid #487b98;
  outline-offset:4px
}
.site-header {
  background:rgba(255,254,251,.92);
  border-bottom:1px solid var(--line)
}
.header-inner {
  min-height:78px;
  display:flex;
  align-items:center;
  gap:32px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:11px;
  min-width:220px;
  text-decoration:none
}
.brand img {
  display:block;
  border-radius:11px
}
.brand strong,.brand small {
  display:block
}
.brand strong {
  font-size:16px;
  letter-spacing:.04em
}
.brand small {
  margin-top:4px;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.2em
}
.site-nav {
  display:flex;
  gap:30px;
  margin:auto
}
.site-nav a {
  font-size:13px;
  color:#53616b;
  text-decoration:none
}
.site-nav a:hover,.download-aside a:hover {
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:5px
}
.header-action {
  white-space:nowrap;
  color:#fff;
  background:var(--ink);
  padding:12px 17px;
  border-radius:100px;
  font-size:13px;
  font-weight:600;
  text-decoration:none
}
.header-action span {
  margin-left:10px
}
.header-action:hover,.button-dark:not([aria-disabled=true]):hover {
  background:#3c5362
}
.hero {
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(365px,.95fr);
  gap:clamp(40px,6vw,100px);
  align-items:center;
  padding-top:86px;
  padding-bottom:99px
}
.eyebrow {
  margin:0 0 25px;
  color:var(--accent);
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em
}
.eyebrow-line {
  display:inline-block;
  width:22px;
  height:1px;
  margin:0 10px 4px 0;
  background:var(--accent)
}
h1,h2,h3,p {
  overflow-wrap:anywhere
}
h1,h2,.download-card h3,.install h3 {
  font-family:Georgia,"Songti SC","STSong","Noto Serif CJK SC",serif
}
h1 {
  font-size:clamp(48px,5.3vw,76px);
  line-height:1.23;
  letter-spacing:-.055em;
  margin:0 0 29px;
  font-weight:600
}
h1 em {
  font-style:normal;
  color:var(--accent)
}
.hero-lede {
  max-width:590px;
  margin:0;
  color:#4d5d67;
  font-size:17px;
  line-height:1.95
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:35px
}
.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  min-height:48px;
  padding:0 23px;
  border-radius:100px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:background-color .18s,transform .18s
}
.button:hover {
  transform:translateY(-2px)
}
.button-dark {
  color:#fff;
  background:var(--ink)
}
.button-light {
  border:1px solid #c9d0d2;
  background:#fffefa
}
.button-light:hover {
  background:var(--accent-soft)
}
.hero-note {
  margin:21px 0 0;
  color:#77838a;
  font-size:12px;
  line-height:1.65
}
.workflow {
  background:#fffefa;
  border:1px solid #d7dcd9;
  box-shadow:var(--shadow);
  border-radius:26px;
  padding:25px 29px
}
.workflow-heading,.workflow-foot {
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#60727d;
  font-size:11px;
  letter-spacing:.1em
}
.workflow-heading {
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
  font-weight:700
}
.workflow ol {
  list-style:none;
  margin:0;
  padding:0
}
.workflow li {
  display:grid;
  grid-template-columns:43px 1fr 20px;
  gap:13px;
  align-items:center;
  padding:21px 0;
  border-bottom:1px solid #e7e8e4
}
.step-number {
  align-self:start;
  color:#79919d;
  font-family:Georgia,serif;
  font-size:13px
}
.workflow strong,.workflow small {
  display:block
}
.workflow strong {
  font-size:16px;
  margin-bottom:6px
}
.workflow small {
  color:#667680;
  font-size:12px;
  line-height:1.5
}
.step-arrow {
  color:#9eaaaf
}
.workflow-foot {
  justify-content:flex-start;
  gap:9px;
  padding-top:19px;
  letter-spacing:0
}
.status-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:#6d968b
}
.about-band {
  border-top:1px solid #dfe3df;
  border-bottom:1px solid #dfe3df;
  background:#e9eeed
}
.about-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:end;
  padding-block:47px
}
.about-inner .eyebrow {
  margin-bottom:14px
}
.about-inner h2 {
  margin:0;
  font-size:clamp(27px,3vw,38px);
  font-weight:600;
  letter-spacing:-.035em
}
.about-inner>p {
  margin:0;
  color:#53636c;
  font-size:14px;
  line-height:1.9
}
.downloads,.install {
  padding-block:88px
}
.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:29px
}
.section-head .eyebrow {
  margin-bottom:13px
}
.section-head h2 {
  font-size:clamp(32px,3vw,43px);
  font-weight:600;
  letter-spacing:-.04em;
  margin:0 0 12px
}
.section-head p:not(.eyebrow) {
  margin:0;
  color:#687882;
  font-size:14px;
  line-height:1.75
}
.release-state {
  display:flex;
  align-items:center;
  gap:9px;
  max-width:320px;
  padding:10px 12px;
  background:#edf1f0;
  border:1px solid #d9e1df;
  border-radius:12px;
  color:#53646e;
  font-size:12px;
  line-height:1.5
}
.state-indicator {
  flex:none;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#91a3ad
}
.release-state[data-state=ready] .state-indicator {
  background:#5f9b77
}
.release-state[data-state=error] .state-indicator,.release-state[data-state=empty] .state-indicator {
  background:#ba8c61
}
.release-state button {
  border:0;
  padding:0;
  color:#275e77;
  background:none;
  text-decoration:underline;
  white-space:nowrap;
  cursor:pointer
}
.release-state button[hidden] {
  display:none
}
.download-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px
}
.download-card {
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:335px;
  padding:32px 35px 27px;
  background:var(--card);
  border:1px solid #dce0dc;
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}
.card-heading {
  display:flex;
  justify-content:space-between;
  align-items:center
}
.platform-icon {
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border:1px solid #d6dcdb;
  border-radius:12px;
  font:700 11px/1 ui-monospace,SFMono-Regular,Menlo,monospace;
  letter-spacing:.08em
}
.format {
  color:#7d8b91;
  font:600 11px/1 ui-monospace,SFMono-Regular,Menlo,monospace;
  letter-spacing:.12em
}
.download-card h3 {
  margin:20px 0 7px;
  font-size:27px;
  font-weight:600;
  letter-spacing:-.025em
}
.card-description {
  margin:0;
  color:#62727c;
  font-size:13px
}
.file-details {
  display:flex;
  gap:34px;
  margin:29px 0 22px;
  padding-top:18px;
  border-top:1px solid #e8eae6
}
.file-details div {
  min-width:110px
}
.file-details dt {
  margin-bottom:7px;
  color:#7a878e;
  font-size:11px
}
.file-details dd {
  margin:0;
  color:#273640;
  font-size:14px;
  font-weight:650;
  font-variant-numeric:tabular-nums
}
.download-action {
  align-self:flex-start;
  margin-top:auto;
  min-width:220px
}
.download-action[aria-disabled=true] {
  background:#dce2e2;
  color:#65747c;
  cursor:not-allowed;
  transform:none
}
.card-status {
  min-height:17px;
  margin:12px 0 0;
  color:#78868d;
  font-size:11px
}
.download-aside {
  margin:20px 0 0;
  color:#6d7c84;
  font-size:12px;
  line-height:1.7
}
.download-aside a {
  margin-inline:2px;
  text-underline-offset:3px
}
.install {
  padding-top:12px;
  padding-bottom:100px
}
.install-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}
.install-grid article {
  border-top:1px solid #b9c7cb;
  padding:21px 15px 5px 0
}
.install-grid span {
  color:#587080;
  font:700 11px/1.5 ui-monospace,SFMono-Regular,Menlo,monospace;
  letter-spacing:.03em
}
.install-grid h3 {
  margin:20px 0 8px;
  font-size:21px;
  font-weight:600
}
.install-grid p {
  margin:0;
  color:#61717a;
  font-size:13px;
  line-height:1.85
}
.install-note {
  margin-top:30px;
  border:1px solid #d8deda;
  border-radius:13px;
  background:#fffefa;
  padding:0 19px;
  color:#556872;
  font-size:13px
}
.install-note summary {
  padding:18px 0;
  cursor:pointer;
  font-weight:600
}
.install-note p {
  margin:0;
  padding:0 0 19px;
  line-height:1.8
}
.site-footer {
  border-top:1px solid #dfe1dd;
  background:#f0efeb
}
.footer-inner {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  min-height:82px;
  color:#6b7980;
  font-size:11px
}
.footer-inner a {
  text-underline-offset:4px
}
.hero {
  padding-top:66px;
  padding-bottom:68px
}
.install {
  padding-top:76px
}
.site-nav [aria-current="page"] {
  color:var(--ink);
  font-weight:700
}
.download-page-lead {
  padding-top:66px;
  padding-bottom:45px;
  border-bottom:1px solid var(--line)
}
.download-page-lead .eyebrow {
  margin-bottom:18px
}
.download-page-lead h1 {
  margin-bottom:15px;
  font-size:clamp(44px,5vw,66px)
}
.download-page-lead > p:not(.eyebrow) {
  max-width:720px;
  margin:0;
  color:#566771;
  font-size:15px;
  line-height:1.85
}
.lead-link {
  display:inline-block;
  margin-top:21px;
  color:#325a6e;
  font-size:13px;
  font-weight:700;
  text-underline-offset:5px
}
.download-page .downloads {
  padding-top:58px;
  padding-bottom:68px
}
.download-page .install {
  border-top:1px solid var(--line)
}
@media(max-width:950px) {
  .header-inner {
    gap:18px
  }
  .brand {
    min-width:auto
  }
  .site-nav {
    gap:16px
  }
  .hero {
    grid-template-columns:1fr;
    gap:50px;
    padding-top:65px;
    padding-bottom:72px
  }
  .workflow {
    max-width:650px
  }
  .about-inner {
    gap:35px
  }
}
@media(max-width:680px) {
  .wrap {
    width:min(100% - 36px,520px)
  }
  .header-inner {
    min-height:70px;
    flex-wrap:wrap;
    gap:0
  }
  .brand {
    margin-right:auto
  }
  .brand img {
    width:35px;
    height:35px
  }
  .brand strong {
    font-size:14px
  }
  .brand small {
    font-size:8px
  }
  .header-action {
    padding:10px 12px;
    font-size:11px
  }
  .header-action span {
    margin-left:4px
  }
  .site-nav {
    order:3;
    width:100%;
    justify-content:space-between;
    gap:8px;
    padding:12px 0 13px;
    margin:0
  }
  .site-nav a {
    font-size:12px
  }
  .hero {
    padding-top:58px;
    padding-bottom:60px;
    gap:39px
  }
  .hero .eyebrow {
    margin-bottom:20px
  }
  .hero h1 {
    font-size:clamp(43px,10.8vw,58px);
    margin-bottom:19px
  }
  .hero-lede {
    font-size:15px;
    line-height:1.85
  }
  .hero-actions {
    margin-top:28px
  }
  .button {
    min-height:46px;
    padding:0 18px;
    gap:12px
  }
  .hero-note {
    margin-top:15px
  }
  .workflow {
    padding:21px 20px;
    border-radius:19px
  }
  .workflow li {
    padding:17px 0
  }
  .about-inner {
    grid-template-columns:1fr;
    gap:17px;
    padding-block:34px
  }
  .about-inner h2 {
    font-size:29px
  }
  .about-inner>p {
    font-size:13px
  }
  .downloads,.install {
    padding-block:65px
  }
  .section-head {
    display:block
  }
  .section-head h2 {
    font-size:34px
  }
  .release-state {
    max-width:none;
    margin-top:20px
  }
  .download-grid {
    grid-template-columns:1fr;
    gap:16px
  }
  .download-card {
    min-height:315px;
    padding:25px 24px 22px
  }
  .download-card h3 {
    font-size:25px
  }
  .install {
    padding-top:0;
    padding-bottom:70px
  }
  .install-grid {
    grid-template-columns:1fr;
    gap:18px
  }
  .install-grid article {
    padding-top:17px
  }
  .install-grid h3 {
    margin-top:12px
  }
  .install-note {
    margin-top:27px
  }
  .footer-inner {
    min-height:110px;
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:4px 20px;
    padding-block:22px
  }
  .footer-inner span:first-child {
    width:100%
  }
}
@media(max-width:680px) {
  .install {
    padding-top:62px
  }
  .download-page-lead {
    padding-top:48px;
    padding-bottom:38px
  }
  .download-page-lead h1 {
    font-size:41px
  }
  .download-page-lead > p:not(.eyebrow) {
    font-size:14px
  }
  .download-page .downloads {
    padding-top:54px;
    padding-bottom:62px
  }
}
@media(max-width:380px) {
  .header-action {
    font-size:10px
  }
  .hero-actions .button {
    width:100%
  }
  .file-details {
    gap:8px
  }
  .file-details div {
    min-width:0;
    flex:1
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  .button {
    transition:none
  }
  .button:hover {
    transform:none
  }
}
