html:has(.downloads-page) {
  scroll-behavior: smooth;
}

.downloads-page {
  --downloads-media-shadow: rgb(15 23 42 / 18%);
  --downloads-pill-surface: color-mix(in srgb, var(--home-card-bg) 96%, var(--home-accent-soft) 4%);
  overflow-x: clip;
  background-color: var(--home-page-bg) !important;
  background-image:
    radial-gradient(
      ellipse 72rem 42rem at 50% 8rem,
      color-mix(in srgb, var(--home-accent) 19%, transparent) 0%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 52rem 62rem at -8% 38%,
      color-mix(in srgb, #72b7ff 11%, transparent) 0%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 52rem 66rem at 108% 61%,
      color-mix(in srgb, var(--home-accent) 10%, transparent) 0%,
      transparent 73%
    ),
    radial-gradient(
      ellipse 64rem 40rem at 50% 94%,
      color-mix(in srgb, var(--home-accent) 12%, transparent) 0%,
      transparent 74%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--home-accent-soft) 62%, var(--home-card-bg) 38%) 0%,
      var(--home-page-bg) 25%,
      color-mix(in srgb, var(--home-accent-soft) 20%, var(--home-page-bg) 80%) 52%,
      var(--home-page-bg) 76%,
      color-mix(in srgb, var(--home-accent-soft) 46%, var(--home-page-bg) 54%) 100%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.downloads-page.home-theme-dark {
  --downloads-media-shadow: rgb(0 0 0 / 42%);
  --downloads-pill-surface: color-mix(in srgb, var(--home-card-bg) 92%, var(--home-accent-soft) 8%);
}

.downloads-page-main {
  overflow: clip;
  background: transparent;
  color: var(--home-text);
}

.downloads-page-main > article {
  position: relative;
  isolation: isolate;
  background: none;
}

@layer components {
  .home-page.downloads-page #navbar-header {
    border-color: transparent !important;
    background: rgb(255 255 255 / 48%) !important;
    box-shadow: none;
    backdrop-filter: blur(1.1rem) saturate(1.08);
  }

  .home-page.downloads-page.home-theme-dark #navbar-header {
    background: rgb(46 46 46 / 54%) !important;
  }
}

.home-page.downloads-page #footer {
  border-top: 0;
  background-color: transparent !important;
  color: color-mix(in srgb, var(--home-muted-text) 90%, var(--home-heading) 10%) !important;
  opacity: 0.88;
}

.home-page.downloads-page #footer a,
.home-page.downloads-page #footer span {
  color: inherit !important;
}

.home-page.downloads-page #footer a:hover {
  color: var(--home-heading) !important;
}

.downloads-section-shell {
  width: min(100% - 2rem, 78rem);
  margin-inline: auto;
}

.downloads-hero {
  position: relative;
  padding: clamp(4.75rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.downloads-hero-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
}

.downloads-hero-copy {
  display: flex;
  width: min(100%, 60rem);
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.downloads-hero-title {
  max-width: 15ch;
  margin: 0;
  color: var(--home-heading);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 760;
  letter-spacing: -0.038em;
  line-height: 1.03;
  text-wrap: balance;
}

.downloads-hero-title > span {
  display: block;
}

.downloads-hero-title > .downloads-hero-product-title {
  margin-bottom: 0.18em;
  font-size: clamp(1.25rem, 3.17vw, 2.775rem);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.12;
  white-space: nowrap;
}

.downloads-brand-word {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.downloads-hero-lead {
  max-width: 46rem;
  margin: 1.6rem 0 0;
  color: var(--home-muted-text);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.76;
  text-wrap: pretty;
}

.downloads-hero-actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.downloads-action-block {
  display: flex;
  min-width: min(100%, 13.5rem);
  flex-direction: column;
  align-items: center;
}

.downloads-primary-action {
  width: 100%;
  border: 0;
  background: var(--home-accent);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--home-accent) 24%, transparent);
  color: var(--home-on-accent);
}

.downloads-primary-action:not(:disabled):hover {
  box-shadow: 0 6px 8px color-mix(in srgb, var(--home-accent) 28%, transparent);
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.downloads-primary-action:disabled {
  cursor: default;
  box-shadow: none;
  opacity: 0.78;
}

.downloads-primary-action:focus-visible,
.downloads-secondary-action:focus-visible {
  outline-color: var(--home-accent);
}

.downloads-primary-action > svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.downloads-browser-store-icon {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.downloads-alternate-store > .downloads-browser-store-icon {
  width: 1.12rem;
  height: 1.12rem;
}

.downloads-alternate-store {
  display: inline-flex;
  min-height: 2rem;
  cursor: pointer;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.38rem;
  padding: 0.3rem 0.45rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--home-muted-text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.downloads-alternate-store:not(:disabled):hover {
  background: color-mix(in srgb, var(--home-accent) 8%, transparent);
  color: var(--home-heading);
}

.downloads-alternate-store:disabled {
  cursor: default;
  opacity: 0.72;
}

.downloads-alternate-store:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 2px;
}

.downloads-alternate-store-external {
  width: 0.82rem !important;
  height: 0.82rem !important;
}

.downloads-action-notice {
  max-width: 23rem;
  min-height: 1.25rem;
  margin: 0.65rem 0 0;
  color: var(--home-muted-text);
  font-size: 0.78rem;
  line-height: 1.45;
}

.downloads-secondary-action {
  display: inline-flex;
  min-width: 8.5rem;
  min-height: 2.75rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.3rem;
  border: 1px solid color-mix(in srgb, var(--home-accent) 28%, var(--home-border) 72%);
  border-radius: 0.75rem;
  background: var(--downloads-pill-surface);
  color: var(--home-heading);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 680;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.downloads-secondary-action:hover {
  border-color: var(--home-accent);
  background: var(--home-card-bg);
  color: var(--home-accent);
  transform: translateY(-1px);
}

.downloads-direct-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.downloads-install-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  min-height: 100dvh;
  place-items: center;
  padding: 1rem;
  background-color: rgb(15 23 42 / 30%) !important;
  color: var(--home-text);
  backdrop-filter: blur(1px);
  animation: downloads-install-backdrop-in 180ms ease-out both;
}

.downloads-install-theme-provider {
  display: contents;
}

.downloads-install-dialog {
  position: relative;
  display: flex;
  overflow: hidden;
  width: min(100%, 38rem);
  height: min(35rem, calc(100dvh - 2rem));
  max-height: calc(100dvh - 2rem);
  flex-direction: column;
  border-radius: 0.75rem;
  background: var(--home-card-bg);
  box-shadow: 0 18px 40px rgb(15 23 42 / 28%);
  color: var(--home-text);
  animation: downloads-install-dialog-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.downloads-install-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0.625rem;
  background: transparent;
  color: var(--home-muted-text);
}

.downloads-install-close:hover {
  background: color-mix(in srgb, var(--home-heading) 7%, transparent);
  color: var(--home-heading);
}

.downloads-install-close:focus-visible,
.downloads-install-browser-switch button:focus-visible,
.downloads-install-steps button:focus-visible,
.downloads-install-window-address button:focus-visible,
.downloads-install-footer button:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 2px;
}

.downloads-install-close svg {
  width: 1.3rem;
  height: 1.3rem;
}

.downloads-install-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 3.5rem 0.65rem;
  text-align: center;
}

.downloads-install-header h2 {
  max-width: 22ch;
  margin: 0;
  color: var(--home-heading) !important;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 730;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
}

.downloads-install-browser-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--home-heading) 6%, var(--home-page-bg) 94%);
}

.downloads-install-browser-switch button {
  display: inline-flex;
  min-height: 2rem;
  cursor: pointer;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.78rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--home-muted-text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
}

.downloads-install-browser-switch button.is-active {
  background: var(--home-card-bg);
  color: var(--home-heading);
  box-shadow: 0 2px 6px rgb(15 23 42 / 10%);
}

.downloads-install-browser-switch .downloads-browser-store-icon {
  width: 1rem;
  height: 1rem;
}

.downloads-install-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 2rem), 33rem);
  margin: 0 auto;
  padding: 0.25rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--home-heading) 5%, var(--home-page-bg) 95%);
}

.downloads-install-steps button {
  display: inline-flex;
  min-width: 0;
  min-height: 2.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  border: 0;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--home-muted-text);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
}

.downloads-install-steps button > span {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
}

.downloads-install-steps button.is-active {
  background: var(--home-card-bg);
  color: var(--home-heading);
}

.downloads-install-steps button.is-active > span {
  border-color: var(--home-accent);
  background: var(--home-accent);
  color: var(--home-on-accent);
}

.downloads-install-content {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.7rem 1rem 0.65rem;
}

.downloads-install-copy {
  display: grid;
  height: 4.25rem;
  flex: 0 0 4.25rem;
  align-content: start;
  overflow: hidden;
  text-align: center;
}

.downloads-install-copy h3 {
  margin: 0;
  color: var(--home-heading);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.35;
  text-wrap: balance;
}

.downloads-install-copy p {
  max-width: 48rem;
  margin: 0.35rem auto 0;
  color: var(--home-muted-text);
  font-size: 0.84rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.downloads-install-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  min-height: 13rem;
  flex: 1 1 0;
  place-items: center;
  margin: 0;
  padding: clamp(0.9rem, 2vw, 1.4rem);
  border: 1px solid color-mix(in srgb, var(--home-accent) 18%, var(--home-border) 82%);
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 50% 15%, color-mix(in srgb, var(--home-accent) 10%, transparent), transparent 48%),
    color-mix(in srgb, var(--home-accent-soft) 34%, var(--home-page-bg) 66%);
}

.downloads-install-visual-unzip {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(0.75rem, 3vw, 1.75rem);
}

.downloads-install-package-card,
.downloads-install-folder-card {
  display: flex;
  width: min(100%, 12.5rem);
  min-height: 8.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--home-accent) 20%, var(--home-border) 80%);
  border-radius: 0.75rem;
  background: var(--home-card-bg);
  color: var(--home-accent);
}

.downloads-install-package-card > svg,
.downloads-install-folder-card > svg {
  width: 3rem;
  height: 3rem;
}

.downloads-install-package-card > span,
.downloads-install-folder-card > span {
  margin-top: 0.7rem;
  color: var(--home-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.downloads-install-package-card > strong {
  margin-top: 0.3rem;
  color: var(--home-muted-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.downloads-install-folder-card ul {
  display: flex;
  gap: 0.5rem;
  margin: 0.65rem 0 0;
  padding: 0;
  color: var(--home-muted-text);
  font-size: 0.68rem;
  list-style: none;
}

.downloads-install-folder-card li:first-child {
  color: var(--home-accent);
  font-weight: 650;
}

.downloads-install-transfer-arrow {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--home-accent);
  color: var(--home-on-accent);
}

.downloads-install-transfer-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.downloads-install-browser-visual {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background: color-mix(in srgb, var(--home-accent-soft) 20%, var(--home-page-bg) 80%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 55%);
}

.downloads-install-window-bar {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  width: 100%;
  min-height: 2.55rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.75rem;
  border-bottom: 1px solid var(--home-border);
  background: color-mix(in srgb, var(--home-card-bg) 94%, var(--home-page-bg) 6%);
}

.downloads-install-window-dots {
  display: inline-flex;
  gap: 0.38rem;
}

.downloads-install-window-dots i {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #ff5f57;
}

.downloads-install-window-dots i:nth-child(2) {
  background: #febc2e;
}

.downloads-install-window-dots i:nth-child(3) {
  background: #28c840;
}

.downloads-install-window-address {
  display: flex;
  overflow: hidden;
  min-height: 2rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 0.25rem 0.3rem 0.25rem 0.65rem;
  border: 1px solid color-mix(in srgb, var(--home-border) 88%, transparent);
  border-radius: 0.55rem;
  background: var(--home-page-bg);
  color: var(--home-muted-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  white-space: nowrap;
}

.downloads-install-window-address .downloads-browser-store-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.downloads-install-window-address code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--home-heading);
  font: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.downloads-install-window-address button {
  display: inline-flex;
  min-height: 1.55rem;
  cursor: pointer;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  border: 0;
  border-radius: 0.4rem;
  background: color-mix(in srgb, var(--home-accent) 10%, transparent);
  color: var(--home-accent);
  font: inherit;
  font-size: 0.67rem;
  font-weight: 680;
  white-space: nowrap;
}

.downloads-install-window-address button:hover {
  background: color-mix(in srgb, var(--home-accent) 16%, transparent);
}

.downloads-install-window-address button svg {
  width: 0.82rem;
  height: 0.82rem;
}

.downloads-install-window-body {
  position: relative;
  display: grid;
  width: 100%;
  flex: 1 1 auto;
  min-height: 10.5rem;
  background: color-mix(in srgb, var(--home-card-bg) 96%, var(--home-page-bg) 4%);
}

.downloads-install-window-body-edge {
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
}

.downloads-install-browser-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem;
  border-right: 1px solid var(--home-border);
  background: color-mix(in srgb, var(--home-page-bg) 76%, var(--home-card-bg) 24%);
  color: var(--home-muted-text);
  font-size: 0.68rem;
}

.downloads-install-browser-sidebar > strong {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.1rem;
  color: var(--home-heading);
  font-size: 0.8rem;
}

.downloads-install-browser-sidebar svg {
  width: 1rem;
  height: 1rem;
}

.downloads-install-browser-sidebar > span.is-active {
  padding: 0.4rem 0.5rem;
  border-radius: 0.45rem;
  background: color-mix(in srgb, var(--home-accent) 9%, transparent);
  color: var(--home-heading);
  font-weight: 650;
}

.downloads-install-browser-sidebar > .downloads-install-developer-control {
  width: 100%;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-inline: 0.55rem;
}

.downloads-install-manager-main {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.85rem 1rem 1rem;
}

.downloads-install-window-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--home-heading);
  font-size: 0.86rem;
  font-weight: 680;
}

.downloads-install-window-heading > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.downloads-install-window-heading svg {
  width: 1.15rem;
  height: 1.15rem;
}

.downloads-install-developer-control {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.55rem;
  color: var(--home-muted-text);
  font-size: 0.74rem;
  font-weight: 620;
  white-space: nowrap;
}

.downloads-install-developer-control.is-highlighted {
  padding: 0.4rem 0.5rem;
  border: 2px solid var(--home-accent);
  border-radius: 0.55rem;
  background: var(--home-card-bg);
  color: var(--home-heading);
  box-shadow: 0 5px 14px rgb(15 23 42 / 10%);
}

.downloads-install-developer-control > i {
  position: relative;
  width: 2.15rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--home-accent);
}

.downloads-install-developer-control > i::after {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.downloads-install-manager-actions {
  display: flex;
  align-items: center;
  min-height: 2.2rem;
  margin-top: 0.6rem;
}

.downloads-install-manager-actions > button {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--home-border);
  border-radius: 0.55rem;
  background: var(--home-card-bg);
  color: var(--home-heading);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 680;
}

.downloads-install-manager-actions > button.is-highlighted {
  border: 2px solid var(--home-accent);
  background: color-mix(in srgb, var(--home-accent) 8%, var(--home-card-bg) 92%);
  color: var(--home-accent);
  box-shadow: 0 5px 14px rgb(15 23 42 / 10%);
}

.downloads-install-manager-actions > button svg {
  width: 1rem;
  height: 1rem;
}

.downloads-install-extension-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.7rem;
  padding: 0.7rem;
  border: 1px solid var(--home-border);
  border-radius: 0.65rem;
  background: var(--home-card-bg);
  box-shadow: 0 3px 9px rgb(15 23 42 / 7%);
}

.downloads-install-assistant-logo {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.downloads-install-extension-card > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.downloads-install-extension-card strong,
.downloads-install-extension-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.downloads-install-extension-card strong {
  color: var(--home-heading);
  font-size: 0.78rem;
}

.downloads-install-extension-card small {
  color: var(--home-muted-text);
  font-size: 0.65rem;
}

.downloads-install-extension-card > i {
  width: 2rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: inset 0 0 0 0.15rem var(--home-accent);
}

.downloads-install-extension-card > i::after {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.15rem 0.15rem 0 auto;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.downloads-install-drag-folder {
  position: absolute;
  z-index: 3;
  right: 1.2rem;
  bottom: 0.8rem;
  display: flex;
  min-width: 8rem;
  flex-direction: column;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--home-accent) 40%, var(--home-border) 60%);
  border-radius: 0.65rem;
  background: color-mix(in srgb, var(--home-card-bg) 94%, transparent);
  color: var(--home-accent);
  box-shadow: 0 8px 20px rgb(15 23 42 / 14%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  visibility: hidden;
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    visibility 0s linear 140ms;
}

.downloads-install-drag-folder.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.downloads-install-drag-folder > svg {
  width: 2.4rem;
  height: 2.4rem;
}

.downloads-install-drag-folder strong {
  color: var(--home-heading);
  font-size: 0.88rem;
}

.downloads-install-drag-cue {
  position: absolute;
  right: 4.6rem;
  bottom: 2.7rem;
  z-index: 2;
  width: 10rem;
  height: auto;
  aspect-ratio: 1;
  color: var(--home-accent);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 140ms ease,
    visibility 0s linear 140ms;
}

.downloads-install-drag-cue.is-visible {
  opacity: 0.92;
  visibility: visible;
  transition-delay: 0s;
}

.downloads-install-drag-path {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  opacity: 0.72;
  filter: drop-shadow(0 2px 2px rgb(37 99 235 / 12%));
}

.downloads-install-drag-hand {
  position: absolute;
  right: -0.55rem;
  bottom: -0.55rem;
  width: 1.55rem;
  height: 1.55rem;
  color: var(--home-heading);
  filter: drop-shadow(0 2px 3px rgb(15 23 42 / 18%));
}

.downloads-install-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.7rem 1rem 0.8rem;
  border-top: 1px solid var(--home-border);
}

.downloads-install-footer button {
  display: inline-flex;
  min-height: 2.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.68rem 1rem;
  border-radius: 0.7rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 680;
}

.downloads-install-footer button svg {
  width: 1rem;
  height: 1rem;
}

.downloads-install-previous {
  border: 0;
  background: transparent;
  color: var(--home-muted-text);
}

.downloads-install-previous:disabled {
  cursor: default;
  opacity: 0;
}

.downloads-install-next {
  min-width: 10rem;
  border: 0;
  background: var(--home-accent);
  color: var(--home-on-accent);
}

.home-theme-dark.downloads-install-overlay {
  background-color: rgb(0 0 0 / 38%) !important;
}

.downloads-product-showcase {
  position: relative;
  width: min(100%, 76rem);
  padding: clamp(1rem, 3vw, 2.25rem) clamp(0rem, 5vw, 5.5rem) clamp(1rem, 4vw, 3rem);
  animation: downloads-rise 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.downloads-product-showcase::before {
  position: absolute;
  inset: -5% 3% -8%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--home-card-bg) 82%, transparent) 0%,
    color-mix(in srgb, var(--home-accent-soft) 48%, transparent) 48%,
    transparent 76%
  );
  content: "";
}

.downloads-product-glow {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--home-accent) 16%, transparent);
  filter: blur(5rem);
  transform: translateX(-50%);
}

.downloads-hero-workflow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  gap: 1.15rem;
  place-items: center;
  margin: 0;
}

.downloads-hero-image-frame {
  overflow: hidden;
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 12px 28px var(--downloads-media-shadow);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
}

.downloads-hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.downloads-capability-pill {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--home-accent) 24%, var(--home-border) 76%);
  border-radius: 0.75rem;
  background: var(--downloads-pill-surface);
  color: var(--home-heading);
  font-size: 0.82rem;
  font-weight: 690;
  line-height: 1.2;
  white-space: nowrap;
}

.downloads-capability-pill svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  color: var(--home-accent);
}

.downloads-hero-capability {
  position: relative;
  z-index: 4;
  background: color-mix(in srgb, var(--home-card-bg) 92%, transparent);
}

.downloads-feature-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

.downloads-feature-stories {
  display: grid;
  gap: clamp(6rem, 12vw, 10rem);
  margin-top: 0;
}

.downloads-feature-story {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.downloads-feature-copy {
  position: relative;
  z-index: 3;
  max-width: 33rem;
}

.downloads-feature-copy h3 {
  max-width: 14ch;
  margin: 0;
  color: var(--home-heading);
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 730;
  letter-spacing: -0.036em;
  line-height: 1.11;
  text-wrap: balance;
}

.downloads-feature-copy > span {
  display: block;
  max-width: 65ch;
  margin-top: 1.25rem;
  color: var(--home-muted-text);
  font-size: clamp(0.98rem, 1.25vw, 1.06rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.downloads-feature-shot {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 1.15rem;
  place-items: center;
  margin: 0;
}

.downloads-feature-media-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  place-items: center;
}

.downloads-feature-image-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px var(--downloads-media-shadow);
}

.downloads-feature-image-main > img {
  display: block;
  width: 100%;
  height: auto;
}

.downloads-feature-shot-recognize .downloads-feature-image-main,
.downloads-feature-shot-capture .downloads-feature-image-main {
  width: min(100%, 46rem);
}

.downloads-feature-shot-edit .downloads-feature-media-stage {
  min-height: clamp(37rem, 52vw, 44rem);
}

.downloads-feature-shot-reuse .downloads-feature-media-stage {
  min-height: clamp(44rem, 55vw, 46rem);
}

.downloads-feature-shot-edit .downloads-feature-image-main,
.downloads-feature-shot-reuse .downloads-feature-image-main {
  width: min(24rem, 64%);
  justify-self: start;
}

.downloads-feature-image-secondary,
.downloads-feature-image-tertiary {
  position: absolute;
  z-index: 1;
  display: block;
  width: min(17rem, 43%);
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 9px 22px var(--downloads-media-shadow);
}

.downloads-feature-capability {
  position: relative;
  z-index: 6;
  justify-self: center;
  background: color-mix(in srgb, var(--home-card-bg) 92%, transparent);
}

.downloads-feature-shot-edit .downloads-feature-image-secondary {
  right: 0;
  bottom: 0.75rem;
}

.downloads-feature-shot-reuse .downloads-feature-image-secondary {
  top: 1rem;
  right: 0;
  width: min(14.25rem, 36%);
}

.downloads-feature-shot-reuse .downloads-feature-image-tertiary {
  right: 0;
  bottom: 1rem;
  width: min(14.25rem, 36%);
}

.downloads-cursor-cue {
  position: absolute;
  z-index: 4;
  display: block;
  width: 2rem;
  height: 2rem;
  color: #111827;
  filter: drop-shadow(0 1px 0 rgb(255 255 255 / 96%)) drop-shadow(0 2px 2px rgb(15 23 42 / 26%));
  pointer-events: none;
}

.downloads-cursor-cue svg {
  display: block;
  width: 100%;
  height: 100%;
}

.downloads-feature-shot-recognize .downloads-cursor-cue {
  top: 27%;
  right: 2.5%;
}

.downloads-feature-shot-capture .downloads-cursor-cue {
  top: 52.2%;
  left: 39.7%;
  transform: rotate(-7deg);
}

.downloads-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 8.5rem) 0;
}

.downloads-final-glow {
  position: absolute;
  z-index: -1;
  bottom: -95%;
  left: 50%;
  width: min(68rem, 120vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--home-accent) 11%, transparent);
  filter: blur(5rem);
  transform: translateX(-50%);
}

.downloads-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.downloads-page .downloads-final-content h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--home-heading) !important;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  font-weight: 740;
  letter-spacing: -0.038em;
  line-height: 1.08;
  text-wrap: balance;
}

.downloads-final-content > .downloads-action-block {
  margin-top: 2rem;
}

.downloads-final-content .downloads-action-notice {
  color: var(--home-muted-text);
}

@media (min-width: 48rem) {
  .downloads-section-shell {
    width: min(100% - 3rem, 78rem);
  }
}

@media (min-width: 64rem) {
  .downloads-feature-story {
    grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 6vw, 5.5rem);
  }

  .downloads-feature-story-reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  }

  .downloads-feature-story-reverse .downloads-feature-copy {
    order: 2;
    justify-self: end;
  }

  .downloads-feature-story-reverse .downloads-feature-shot {
    order: 1;
  }
}

@media (max-width: 47.99rem) {
  .downloads-install-overlay {
    padding: 0.5rem;
  }

  .downloads-install-dialog {
    height: min(35rem, calc(100dvh - 1rem));
    max-height: calc(100dvh - 1rem);
  }

  .downloads-install-close {
    top: 0.55rem;
    right: 0.55rem;
  }

  .downloads-install-header {
    gap: 0.55rem;
    padding: 0.85rem 3rem 0.6rem;
  }

  .downloads-install-steps {
    width: calc(100% - 1.5rem);
  }

  .downloads-install-steps button {
    gap: 0.3rem;
    padding-inline: 0.35rem;
    font-size: 0.75rem;
  }

  .downloads-install-content {
    padding: 0.7rem 0.65rem;
  }

  .downloads-install-copy {
    height: 5rem;
    flex-basis: 5rem;
  }

  .downloads-install-visual {
    min-height: 13.5rem;
    padding: 0.75rem;
  }

  .downloads-install-browser-visual {
    padding: 0;
  }

  .downloads-install-package-card,
  .downloads-install-folder-card {
    min-height: 8.25rem;
  }

  .downloads-install-window-bar {
    grid-template-columns: 3.15rem minmax(0, 1fr);
    padding-inline: 0.7rem;
  }

  .downloads-install-window-body {
    min-height: 10.5rem;
  }

  .downloads-install-window-body-edge {
    grid-template-columns: 10rem minmax(0, 1fr);
  }

  .downloads-install-browser-sidebar {
    padding: 0.65rem 0.55rem;
  }

  .downloads-install-manager-main {
    padding: 0.65rem 0.7rem 0.75rem;
  }

  .downloads-install-window-heading,
  .downloads-install-developer-control {
    font-size: 0.68rem;
  }

  .downloads-install-extension-card {
    gap: 0.45rem;
    padding: 0.55rem;
  }

  .downloads-install-assistant-logo {
    width: 2rem;
    height: 2rem;
  }

  .downloads-install-drag-folder {
    right: 0.7rem;
    bottom: 0.55rem;
  }

  .downloads-install-drag-cue {
    right: 4.1rem;
    bottom: 2.4rem;
    width: clamp(7.5rem, 22vw, 9rem);
  }

  .downloads-install-footer {
    padding: 0.65rem 0.75rem 0.8rem;
  }

  .downloads-section-shell {
    width: min(100% - 1.5rem, 78rem);
  }

  .downloads-hero {
    padding-top: 4.1rem;
    padding-bottom: 3rem;
  }

  .downloads-hero-title {
    font-size: clamp(2.7rem, 11vw, 3.45rem);
  }

  .downloads-hero-lead {
    font-size: 1rem;
  }

  .downloads-hero-actions {
    width: min(100%, 30rem);
    max-width: none;
  }

  .downloads-product-showcase {
    padding-inline: 0;
  }

  .downloads-hero-image-frame {
    border-radius: 0.75rem;
  }

  .downloads-hero-image-frame img {
    width: 175%;
    max-width: none;
    transform: translateX(-42%);
  }

  .downloads-capability-pill {
    min-height: 2.5rem;
    padding: 0.55rem 0.72rem;
    font-size: 0.78rem;
  }

  .downloads-feature-section {
    padding-top: 3.75rem;
  }

  .downloads-feature-stories {
    gap: 6.5rem;
  }

  .downloads-feature-copy h3 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .downloads-feature-shot-edit .downloads-feature-media-stage,
  .downloads-feature-shot-reuse .downloads-feature-media-stage {
    min-height: 0;
  }

  .downloads-feature-shot-edit .downloads-feature-image-main {
    width: 72%;
    justify-self: start;
  }

  .downloads-feature-shot-edit .downloads-feature-image-secondary {
    right: 0;
    bottom: 0.75rem;
    width: 46%;
  }

  .downloads-feature-shot-reuse .downloads-feature-media-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .downloads-feature-shot-reuse .downloads-feature-image-main {
    grid-column: 1 / -1;
    width: 72%;
    justify-self: center;
  }

  .downloads-feature-shot-reuse .downloads-feature-image-secondary,
  .downloads-feature-shot-reuse .downloads-feature-image-tertiary {
    position: static;
    display: block;
    width: 100%;
    justify-self: stretch;
  }

  .downloads-cursor-cue {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 31.99rem) {
  .downloads-install-header h2 {
    font-size: 1.28rem;
  }

  .downloads-install-browser-switch button {
    padding-inline: 0.7rem;
  }

  .downloads-install-steps button {
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.66rem;
  }

  .downloads-install-copy p {
    font-size: 0.84rem;
  }

  .downloads-install-window-address button > span {
    display: none;
  }

  .downloads-install-visual-unzip {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  .downloads-install-package-card,
  .downloads-install-folder-card {
    width: 100%;
    min-height: 6.25rem;
    padding: 0.7rem;
  }

  .downloads-install-package-card > svg,
  .downloads-install-folder-card > svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .downloads-install-package-card > span,
  .downloads-install-folder-card > span {
    margin-top: 0.35rem;
  }

  .downloads-install-folder-card ul {
    margin-top: 0.3rem;
  }

  .downloads-install-transfer-arrow {
    width: 2rem;
    height: 2rem;
    transform: rotate(90deg);
  }

  .downloads-install-window-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .downloads-install-developer-control {
    align-self: flex-end;
  }

  .downloads-install-footer {
    justify-content: space-between;
  }

  .downloads-install-next {
    min-width: 8.5rem;
  }

  .downloads-hero-actions {
    width: 100%;
    max-width: 24rem;
    flex-direction: column;
    align-items: stretch;
  }

  .downloads-action-block,
  .downloads-secondary-action {
    width: 100%;
  }
}

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

  .downloads-product-showcase {
    animation: none;
  }

  .downloads-primary-action,
  .downloads-alternate-store,
  .downloads-secondary-action,
  .downloads-install-overlay,
  .downloads-install-dialog {
    animation: none;
    transition: none;
  }
}

@keyframes downloads-install-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes downloads-install-dialog-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes downloads-rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
