:root {
  --ink: #202936;
  --muted: #637083;
  --line: #dfe5ef;
  --canvas: #f8fafb;
  --section-soft: #f5f7fb;
  --transition-surface: rgba(248, 250, 251, .92);
  --site-backdrop:
    linear-gradient(180deg, #f8fafb 0%, #fff 48%, #f6f9fa 100%);
  --hero-backdrop:
    linear-gradient(180deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .58) 100%);
  --home-backdrop: #fff;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --soft-2: #eef7f5;
  --title-ink: #4b586b;
  --brand: #4166ee;
  --brand-dark: #2747c7;
  --teal: #0f8c7a;
  --coral: #d95b4f;
  --violet: #7c5ccf;
  --shadow: 0 22px 48px rgba(32, 41, 54, .24);
  --media-shadow:
    0 24px 52px rgba(32, 41, 54, .28),
    0 8px 20px rgba(32, 41, 54, .18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: var(--site-backdrop);
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: Montserrat, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.16;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 214px;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav__item {
  position: relative;
  display: inline-flex;
}

.site-nav a,
.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand);
  background: #edf2ff;
  text-decoration: none;
}

.site-nav__item--has-menu > .site-nav__link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.site-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 12;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(32, 41, 54, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}

.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__submenu a {
  display: flex;
  min-height: 38px;
  width: 100%;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--ink);
  background: var(--hero-backdrop);
}

.hero--home {
  background: var(--home-backdrop);
  border-bottom: 1px solid var(--line);
}

.page-hero::after,
.download-page::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 250, 251, 0) 0%, var(--transition-surface) 100%);
  z-index: 0;
}

.hero > *,
.page-hero > *,
.download-page > * {
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 86px 0 60px;
  max-width: var(--max);
  text-align: center;
}

.hero h1 {
  margin-inline: auto;
  max-width: 1040px;
  color: var(--title-ink);
  font-weight: 500;
}

.hero__lede,
.lede {
  max-width: 780px;
  font-size: 21px;
  color: inherit;
}

.hero__lede {
  margin: 20px auto 12px;
  color: var(--muted);
}

.privacy-note {
  color: var(--muted);
  font-size: 15px;
}

.hero-video {
  max-width: 1060px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(32, 41, 54, .12);
  border-radius: var(--radius);
  box-shadow: var(--media-shadow);
}

.hero-video video {
  width: var(--media-width, 1024px);
  max-width: 100%;
  height: auto;
}

.hero__actions,
.button-row,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  text-decoration: none;
}

.button--primary {
  color: #fff;
  background: var(--brand);
}

.button--primary:hover {
  background: var(--brand-dark);
}

.button--secondary {
  color: var(--brand);
  background: #eef2ff;
  border-color: #cfd9ff;
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}

.button--large {
  min-width: 220px;
  min-height: 50px;
  text-transform: uppercase;
}

.desktop-download {
  display: inline-flex;
}

.homebrew-command {
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  justify-content: center;
  gap: 8px;
  width: min(100%, 420px);
  margin: 14px auto 0;
}

[data-platform-command][hidden] {
  display: none;
}

.mobile-email-cta {
  display: none;
}

.inline-signup {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 620px;
  margin: 12px auto 8px;
}

.inline-signup input {
  flex: 1;
  min-width: 220px;
  padding: 12px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font: inherit;
}

.inline-signup .form-status {
  flex-basis: 100%;
}

.home-intro {
  position: relative;
  padding: 54px 0 46px;
  text-align: center;
  background: linear-gradient(180deg, var(--canvas) 0%, #fff 90px);
  border-bottom: 1px solid var(--line);
}

.home-intro .container {
  max-width: 980px;
}

.used-by {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .34em;
  min-height: 1.25em;
  color: #333;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 36px;
  line-height: 1.18;
  transform: translateX(18px);
}

.used-by__rotator {
  display: inline-block;
  min-width: 11.75em;
  color: #333;
  text-align: left;
  white-space: nowrap;
  transform-origin: 50% 100%;
  transition: transform .28s ease, opacity .28s ease;
}

.used-by__rotator.is-changing {
  opacity: 0;
  transform: translateY(-.24em) rotateX(68deg);
}

.logo-band {
  margin-top: 34px;
  padding-top: 8px;
  background: transparent;
}

.logo-band p {
  margin-bottom: 18px;
  color: var(--muted);
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(72px, 1fr));
  gap: 24px;
  align-items: center;
}

.logo-grid img {
  width: min(100%, 128px);
  height: 42px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
}

.section {
  padding: 86px 0;
}

.section--white {
  background: #fff;
}

.section--soft {
  background: var(--section-soft);
}

.page-hero + .section,
.page-hero + .section--contact-form,
.page-hero + .section--form-page,
.download-page + .release-notes-section {
  position: relative;
  margin-top: -1px;
}

.page-hero + .section:not(.section--soft),
.page-hero + .section--contact-form,
.page-hero + .section--form-page,
.download-page + .release-notes-section {
  background: linear-gradient(180deg, var(--canvas) 0%, #fff 96px);
}

.page-hero + .section--soft {
  background: linear-gradient(180deg, var(--canvas) 0%, var(--section-soft) 96px);
}

.section--intro {
  padding-top: 64px;
}

.two-column,
.split-feature,
.image-pair,
.page-hero__grid,
.footer-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
}

.two-column--center,
.split-feature,
.image-pair,
.page-hero__grid {
  align-items: center;
}

.media-frame,
.image-pair img {
  overflow: hidden;
  width: var(--media-width, fit-content);
  max-width: 100%;
  justify-self: center;
  border: 1px solid rgba(32, 41, 54, .12);
  border-radius: var(--radius);
  box-shadow: var(--media-shadow);
}

.product-shot {
  background: transparent;
}

.live-feature .product-shot {
  width: var(--media-width, auto);
  max-width: 100%;
  height: auto;
  justify-self: center;
  border: 1px solid rgba(32, 41, 54, .12);
  border-radius: var(--radius);
  box-shadow: var(--media-shadow);
}

.live-feature .product-shot--no-shadow {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.media-frame video {
  width: var(--media-width, auto);
  max-width: 100%;
  height: auto;
  background: transparent;
}

.hero-video {
  width: var(--media-width, 1024px);
  max-width: 100%;
}

.hero-video video {
  width: var(--media-width, 1024px);
  max-width: 100%;
  height: auto;
}

.live-feature .two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.live-feature .two-column > :not(.media-frame):not(.product-shot) {
  flex: 1 1 340px;
  min-width: min(100%, 340px);
}

.live-feature .media-frame,
.live-feature .product-shot {
  flex: 0 1 var(--media-width, 772px);
}

.live-feature h2 {
  font-weight: 500;
}

.inline-performance {
  width: var(--media-width, 414px);
  max-width: 100%;
  height: auto;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(32, 41, 54, .12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--media-shadow);
}

.feature-grid,
.pricing-grid,
.download-grid,
.testimonial-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.pricing-card,
.download-card,
.testimonial,
.post-card,
.steps article,
.note-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(32, 41, 54, .06);
}

.feature-card,
.download-card,
.testimonial,
.post-card,
.steps article,
.note-panel {
  padding: 26px;
}

.feature-card h3,
.download-card h2,
.post-card h2 {
  font-size: 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.capability-list:not(ul) {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-list:not(ul) span {
  padding: 9px 12px;
  border: 1px solid #d9e7e4;
  border-radius: 999px;
  color: #21463f;
  background: var(--soft-2);
  font-size: 15px;
}

ul.capability-list--plain {
  columns: 2;
  column-gap: 58px;
  max-width: 940px;
  padding-left: 22px;
  margin: 0 auto;
}

ul.capability-list--plain li {
  break-inside: avoid;
  margin: 0 0 9px;
  padding-left: 4px;
}

.testimonial {
  margin: 0;
}

.testimonial-list {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin-inline: auto;
}

.capabilities-section .section-heading,
.testimonials-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.testimonials-section {
  background: var(--section-soft);
}

.testimonial--wide {
  padding: 26px 28px;
}

.testimonial--wide h3 {
  color: #333;
}

.testimonial blockquote {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.55;
}

.testimonial figcaption {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 58px 0;
  color: #fff;
  background: #202936;
}

.cta-band--light {
  color: var(--ink);
  background: rgba(245, 247, 251, .72);
}

.license-strip {
  padding: 56px 0;
  text-align: center;
  background: rgba(255, 255, 255, .68);
}

.license-strip h2 {
  font-size: 24px;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2,
.cta-band p {
  margin-bottom: 8px;
}

.cta-section {
  background: #fff;
  text-align: center;
}

.cta-stack {
  display: grid;
  gap: 18px;
}

.cta-row {
  display: grid;
  grid-template-columns: minmax(0, 620px) 240px;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.cta-row h2 {
  margin-bottom: 0;
  font-size: 28px;
  text-align: right;
}

.cta-row .button {
  width: 240px;
  min-height: 48px;
}

.page-hero {
  position: relative;
  padding: 74px 0 70px;
  background: var(--hero-backdrop);
  border-bottom: 0;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  margin-inline: auto;
  color: var(--title-ink);
  font-size: 48px;
  font-weight: 500;
  text-align: center;
}

.page-hero .lede {
  margin-inline: auto;
  color: var(--muted);
  text-align: left;
}

.page-hero--media {
  padding: 74px 0;
}

.page-hero.page-hero--contact,
.page-hero.page-hero--form {
  padding: 74px 0 42px;
}

.page-hero.page-hero--legal,
.page-hero.page-hero--privacy {
  padding-bottom: 30px;
}

.page-hero--contact h1,
.page-hero--form h1 {
  margin-bottom: 22px;
}

.contact-lede p {
  margin-bottom: 6px;
}

.section.section--contact-form,
.section.section--form-page {
  padding-top: 34px;
}

.section.section--legal,
.section.section--privacy {
  padding-top: 28px;
}

.page-hero--blog {
  padding: 74px 0 42px;
}

.page-hero--blog h1 {
  margin-bottom: 22px;
}

.page-hero--buy {
  padding-bottom: 56px;
}

.page-hero--upgrade {
  background: var(--hero-backdrop);
}

.page-hero__grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 850px;
}

.buy-pricing-grid {
  margin-top: 32px;
}

.upgrade-pricing-shell {
  margin-top: 32px;
}

.upgrade-source-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.upgrade-source-option {
  position: relative;
}

.upgrade-source-option input {
  position: absolute;
  opacity: 0;
}

.upgrade-source-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #334155;
  background: rgba(255, 255, 255, .82);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.upgrade-source-option input:focus-visible + span {
  outline: 3px solid rgba(65, 102, 238, .28);
  outline-offset: 2px;
}

.upgrade-source-option input:checked + span {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.upgrade-pricing-grid {
  max-width: 900px;
  margin-inline: auto;
}

.pricing-card {
  padding: 30px;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
}

.pricing-card--featured {
  border-color: #b9c7ff;
  box-shadow: 0 16px 44px rgba(65, 102, 238, .15);
}

.pricing-card h2 {
  max-width: 8em;
  min-height: 64px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.14;
}

.price {
  margin-bottom: 10px;
  color: var(--brand);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.pricing-card > p:not(.price) {
  min-height: 52px;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-card ul {
  padding-left: 0;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.pricing-card ul.pricing-feature-list,
.pricing-card ul.upgrade-feature-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.upgrade-card {
  transition: opacity .18s ease, transform .18s ease;
}

.upgrade-card.is-unavailable {
  opacity: .66;
}

.pricing-feature,
.upgrade-feature {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid #e3e8f2;
  border-radius: 6px;
  background: #fbfcff;
  line-height: 1.3;
  outline: 0;
}

.pricing-feature::before,
.upgrade-feature::before {
  content: "\2713";
  position: absolute;
  left: 13px;
  top: 10px;
  color: var(--teal);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-feature.is-muted,
.upgrade-feature.is-muted {
  color: #94a3b8;
  background: #fbfcff;
}

.pricing-feature.is-muted::before,
.upgrade-feature.is-muted::before {
  content: none;
}

.pricing-feature:focus,
.upgrade-feature:focus {
  border-color: rgba(65, 102, 238, .52);
  box-shadow: 0 0 0 3px rgba(65, 102, 238, .14);
}

.pricing-feature__label,
.upgrade-feature__label {
  display: inline;
}

.pricing-feature__plus,
.upgrade-feature__plus {
  display: inline-block;
  margin-left: 5px;
  color: var(--brand);
  font-weight: 700;
}

.pricing-feature__tooltip,
.upgrade-feature__tooltip {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: calc(100% + 8px);
  z-index: 8;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: #202936;
  box-shadow: 0 14px 32px rgba(32, 41, 54, .22);
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.pricing-feature__tooltip::after,
.upgrade-feature__tooltip::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 100%;
  border: 7px solid transparent;
  border-top-color: #202936;
}

.pricing-feature:hover .pricing-feature__tooltip,
.pricing-feature:focus .pricing-feature__tooltip,
.upgrade-feature:hover .upgrade-feature__tooltip,
.upgrade-feature:focus .upgrade-feature__tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.pricing-card .button {
  margin-top: auto;
}

.button[aria-disabled="true"] {
  opacity: .48;
  pointer-events: none;
}

.buy-intro p:last-child {
  margin-bottom: 0;
}

.buy-faq-heading {
  margin-inline: auto;
  text-align: center;
}

.buy-faq-list {
  display: grid;
  gap: 20px;
  max-width: 940px;
  margin-inline: auto;
}

.buy-faq-list .note-panel h3 {
  font-size: 22px;
}

.buy-faq-list .note-panel p:last-child {
  margin-bottom: 0;
}

.buy-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.buy-discount-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.buy-discount-table th,
.buy-discount-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.buy-discount-table th {
  color: #202936;
  background: #f5f7fb;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 600;
}

.buy-discount-table tr:last-child td {
  border-bottom: 0;
}

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

.download-card .button-row {
  margin-top: 22px;
}

.download-page {
  position: relative;
  background: var(--site-backdrop);
}

.download-shell {
  max-width: 1100px;
  padding: 74px 0 48px;
}

.download-header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.download-header h1 {
  margin-bottom: 22px;
  color: var(--title-ink);
  font-size: 48px;
  font-weight: 500;
}

.download-intro {
  max-width: 820px;
  margin-inline: auto;
  color: #384456;
  text-align: left;
}

.download-current {
  margin-top: 36px;
  text-align: center;
}

.download-current h2,
.release-notes > h2 {
  font-size: 28px;
  font-weight: 500;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
  max-width: 880px;
  margin-top: 20px;
}

.download-option__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 4px;
  color: #fff;
  background: var(--brand);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.download-option__button:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.download-option__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.download-option__icon--windows::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background:
    linear-gradient(90deg, #fff 0 46%, transparent 46% 54%, #fff 54%),
    linear-gradient(180deg, #fff 0 46%, transparent 46% 54%, #fff 54%);
}

.download-option__icon--mac::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 47% 47% 42% 42%;
  background: #fff;
}

.download-option__icon--mac::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 7px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: rotate(-24deg);
}

.download-option__icon--linux::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.download-option p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.download-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 24px auto 0;
}

.download-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 264px;
  padding: 28px 24px;
  border: 1px solid rgba(32, 41, 54, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 32px rgba(32, 41, 54, .08);
  text-align: center;
}

.download-platform__logo {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  object-fit: contain;
}

.download-platform h3 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
}

.download-platform p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.download-platform__links {
  display: grid;
  gap: 8px;
  width: 100%;
  padding-left: 0;
  margin: auto 0 0;
  list-style: none;
}

.download-platform__links a {
  display: block;
  padding: 9px 12px;
  border: 1px solid #cfd9ff;
  border-radius: 5px;
  color: var(--brand);
  background: #f8faff;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.download-platform__links a:hover {
  border-color: #aebfff;
  background: #eef2ff;
  text-decoration: none;
}

.download-command,
.homebrew-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.download-command {
  width: 100%;
  margin-top: 12px;
}

.download-command code,
.homebrew-command code {
  display: block;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 5px;
  color: #2747c7;
  background: #f8fafc;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
  scrollbar-width: thin;
  white-space: nowrap;
}

.download-command button,
.homebrew-command button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #cfd9ff;
  border-radius: 5px;
  color: var(--brand);
  background: #f8faff;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.download-command button:hover,
.homebrew-command button:hover {
  background: #eef2ff;
}

.download-platform__secondary-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.release-notes-section {
  background: linear-gradient(180deg, var(--canvas) 0%, #fff 96px);
}

.download-shell--release {
  padding-top: 36px;
}

.release-notes {
  margin-top: 0;
}

.release-note {
  padding: 30px 0 8px;
  border-top: 1px solid var(--line);
}

.release-note--current {
  padding-top: 12px;
  border-top: 0;
}

.release-note h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
}

.release-group {
  margin-bottom: 24px;
}

.release-group h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.release-group ul {
  margin-bottom: 0;
  padding-left: 24px;
}

.release-group li {
  margin-bottom: 8px;
  color: #384456;
}

.release-group code {
  padding: 2px 4px;
  border: 1px solid #dfe5ef;
  border-radius: 3px;
  color: #2747c7;
  background: #f8fafc;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: .92em;
}

.release-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.release-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.release-table th,
.release-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.release-table th {
  color: #202936;
  background: #f5f7fb;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 600;
}

.release-table tr:last-child td {
  border-bottom: 0;
}

.release-table td:first-child {
  min-width: 280px;
  color: #384456;
}

.faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.download-list a:hover {
  border-color: #b9c7ff;
  text-decoration: none;
}

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

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 700;
}

.cta-inline {
  max-width: 760px;
  text-align: center;
}

.cta-inline .button {
  margin-top: 10px;
}

.post-list {
  display: grid;
  gap: 20px;
  max-width: 860px;
}

.blog-list-section {
  padding-top: 42px;
}

.post-card h2 {
  margin-top: 6px;
}

.article-shell {
  max-width: 880px;
}

.prose {
  color: #2d3748;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 34px;
}

.prose p,
.prose li {
  color: #384456;
}

.prose img,
.prose video {
  margin: 28px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(32, 41, 54, .1);
}

.prose table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
}

.prose th,
.prose td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
}

.prose code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f7f9fc;
}

.privacy-document-embed #app {
  width: 100%;
}

.privacy-document-embed h1:first-child,
.privacy-document-embed .cms-content h1:first-of-type {
  display: none;
}

.privacy-document-embed .cms-content {
  color: inherit;
}

.form-shell {
  max-width: 720px;
}

.form-shell--wide {
  max-width: 960px;
}

.static-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.static-form label,
.static-form legend {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.required-mark {
  color: #c62828;
}

.field-note {
  color: var(--muted);
  font-weight: 500;
}

.static-form input,
.static-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.static-form input:focus,
.static-form textarea:focus {
  outline: 3px solid rgba(65, 102, 238, .18);
  border-color: var(--brand);
}

.file-drop {
  display: grid;
  gap: 10px;
}

.file-drop__label {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 2px dashed #b6c6d6;
  border-radius: var(--radius);
  color: var(--ink);
  background: #f8fbfd;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.file-drop__label:hover,
.file-drop.is-dragging .file-drop__label,
.file-drop.is-focused .file-drop__label {
  border-color: var(--brand);
  background: #f1f7ff;
  box-shadow: 0 0 0 3px rgba(65, 102, 238, .12);
}

.file-drop__title {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.file-drop__message {
  font-size: 16px;
  font-weight: 600;
}

.file-drop__hint {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.file-drop__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  opacity: 0;
}

.file-drop__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.file-drop__list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.static-form fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 16px 0 0;
}

.choice input,
.scale-row input {
  width: auto;
  margin: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-stack {
  display: grid;
  gap: 16px;
}

.scale-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.scale-row label {
  position: relative;
}

.scale-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
}

.scale-row input {
  position: absolute;
  opacity: 0;
}

.scale-row input:checked + span {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.form-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 6px;
  color: #21463f;
  background: var(--soft-2);
}

.form-status.is-error {
  color: #7f1d1d;
  background: #fff1f0;
}

.site-footer {
  padding: 42px 0;
  border-top: 0;
  color: #fff;
  background: #202936;
}

.live-footer {
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 14px;
}

.legal-links a {
  color: #dce6ff;
}

.live-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-size: 12px;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 16;
  width: 44px;
  height: 44px;
  border: 1px solid #cfd9ff;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 41, 54, .16);
  cursor: pointer;
}

.scroll-top[hidden] {
  display: none;
}

.scroll-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--brand);
  border-left: 3px solid var(--brand);
  transform: translate(-50%, -32%) rotate(45deg);
}

.scroll-top:hover {
  background: #eef2ff;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__item {
    display: grid;
  }

  .site-nav__submenu {
    position: static;
    display: grid;
    gap: 4px;
    min-width: 0;
    margin: 0 0 0 14px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav__submenu a {
    min-height: 36px;
  }

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

  .logo-grid {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 78px;
  }

  .hero__lede,
  .lede {
    font-size: 18px;
  }

  .used-by {
    font-size: 30px;
    transform: none;
  }

  .used-by__rotator {
    min-width: 10.8em;
  }

  .section {
    padding: 62px 0;
  }

  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
  }

  .logo-grid img {
    width: 120px;
    height: 42px;
    max-height: none;
  }

  .two-column,
  .split-feature,
  .image-pair,
  .page-hero__grid,
  .faq-grid,
  .pricing-grid,
  .pricing-grid--two,
  .download-grid,
  .steps,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .two-column--reverse > :first-child,
  .two-column--reverse > :last-child {
    order: initial;
  }

  .live-feature .two-column,
  .live-feature .two-column--reverse {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-row h2 {
    text-align: center;
  }

  .cta-row .button {
    margin: 0 auto;
  }

  .page-hero,
  .page-hero.page-hero--contact,
  .page-hero.page-hero--form,
  .page-hero--blog,
  .page-hero--media {
    padding-top: 58px;
  }

  .download-shell {
    padding: 58px 0 40px;
  }

  .page-hero h1,
  .download-header h1 {
    font-size: 40px;
  }

  .download-platforms {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .download-platform {
    min-height: 0;
  }

  .download-shell--release {
    padding-top: 28px;
  }

  .release-note h3 {
    font-size: 24px;
  }

  ul.capability-list--plain {
    columns: 1;
  }
}

@media (max-width: 767px) {
  .desktop-download {
    display: none;
  }

  .homebrew-command {
    display: none;
  }

  .mobile-email-cta {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 176px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 54px 0 44px;
  }

  .used-by {
    display: block;
    font-size: 26px;
    text-align: center;
    transform: none;
  }

  .used-by__rotator {
    display: block;
    min-width: 0;
    text-align: center;
  }

  .download-shell {
    padding: 46px 0 34px;
  }

  .page-hero,
  .page-hero.page-hero--contact,
  .page-hero.page-hero--form,
  .page-hero--blog,
  .page-hero--media {
    padding-top: 46px;
  }

  .page-hero h1,
  .download-header h1 {
    font-size: 34px;
  }

  .download-current h2,
  .release-notes > h2 {
    font-size: 25px;
  }

  .hero__actions,
  .button-row,
  .cta-band__actions,
  .inline-signup {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .homebrew-command {
    grid-template-columns: 1fr;
  }

  .homebrew-command button {
    width: 100%;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .cta-row .button {
    width: 100%;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .legal-links {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
    gap: 18px;
  }

  .logo-grid img {
    width: 112px;
    height: 42px;
  }

  .static-form {
    padding: 22px;
  }
}

@media (min-width: 1212px) {
  .live-feature .two-column--reverse > :first-child {
    order: 2;
  }

  .live-feature .two-column--reverse > :last-child {
    order: 1;
  }
}
