@font-face {
  font-family: "SmartSafe Local";
  src:
    url("/font/Roboto-VariableFont_wdth,wght.ttf") format("truetype-variations"),
    url("/font/RobotoFlex-VariableFont_GRAD,opsz,slnt,wdth,wght.ttf") format("truetype-variations"),
    url("/font/Roboto-Regular.woff2") format("woff2"),
    url("/font/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "SmartSafe Local";
  src:
    url("/font/Roboto-Medium.woff2") format("woff2"),
    url("/font/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "SmartSafe Local";
  src:
    url("/font/Roboto-Bold.woff2") format("woff2"),
    url("/font/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --md-primary: #2196F3;
  --md-primary-dark: #1565C0;
  --md-primary-darker: #0D47A1;
  --md-primary-container: #E3F2FD;
  --md-on-primary: #FFFFFF;
  --md-on-primary-container: #0A3A63;
  --md-surface: #FFFFFF;
  --md-surface-soft: #F7F9FC;
  --md-surface-variant: #EDF3F8;
  --md-on-surface: #17212B;
  --md-on-surface-variant: #536170;
  --md-outline: #D4DEE8;
  --md-shadow-1: 0 1px 2px rgba(17, 38, 60, .08), 0 4px 12px rgba(17, 38, 60, .07);
  --md-shadow-2: 0 8px 24px rgba(20, 66, 104, .12), 0 2px 8px rgba(20, 66, 104, .08);
  --md-shadow-3: 0 20px 48px rgba(20, 66, 104, .18), 0 6px 18px rgba(20, 66, 104, .10);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--md-surface-soft);
  color: var(--md-on-surface);
  font-family: "SmartSafe Local", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(33, 150, 243, .36);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--md-on-surface);
  color: #fff;
  text-decoration: none;
  transition: top .2s ease;
}

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

.app-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(212, 222, 232, .75);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.app-bar__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand > img {
  width: 64px;
  height: 64px;
  max-width: none;
  flex: 0 0 64px;
  object-fit: contain;
}

.brand__text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--md-on-surface);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: var(--md-surface-variant);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.main-nav a,
.language-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--md-on-surface-variant);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background .18s ease, color .18s ease;
}

.main-nav a:hover,
.language-menu summary:hover {
  background: var(--md-primary-container);
  color: var(--md-primary-darker);
}

.main-nav > a.is-active,
.main-nav > a[aria-current="page"],
.main-nav > a[aria-current="location"] {
  color: var(--md-primary-darker);
  background: var(--md-primary-container);
  box-shadow: inset 0 0 0 1px rgba(33, 150, 243, .12);
}

.language-menu {
  position: relative;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu__popover {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 154px;
  padding: 8px;
  border: 1px solid var(--md-outline);
  border-radius: 16px;
  background: var(--md-surface);
  box-shadow: var(--md-shadow-2);
}

.language-menu__popover a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
}

.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--md-on-primary);
  background: linear-gradient(135deg, var(--md-primary-darker) 0%, var(--md-primary) 58%, #42A5F5 100%);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: none;
  display: none;
}

.hero__inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
  padding-block: 82px 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.hero__copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero__copy strong {
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.md-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.05rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.md-button:hover {
  transform: translateY(-2px);
}

.md-button--filled {
  background: #fff;
  color: var(--md-primary-darker);
  box-shadow: var(--md-shadow-2);
}

.md-button--filled:hover {
  box-shadow: var(--md-shadow-3);
}

.md-button--tonal {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
}

.md-button--tonal:hover {
  background: rgba(255, 255, 255, .23);
}

.button-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.metric-chip {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .16);
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  font-weight: 650;
}

.metric-chip svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
}

.hero-visual::before {
  display: none;
}

.hero-device-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  line-height: 0;
}

.hero-device-card::before {
  display: none;
}

.hero-device-card img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 680px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .16));
}

.section {
  padding-block: 104px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .kicker {
  margin: 0 0 10px;
  color: var(--md-primary-dark);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--md-on-surface-variant);
  font-size: 1.06rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.screenshot-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--md-outline);
  border-radius: var(--radius-md);
  background: var(--md-surface);
  box-shadow: var(--md-shadow-1);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.screenshot-card:nth-child(4),
.screenshot-card:nth-child(5) {
  grid-column: span 6;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--md-shadow-3);
  border-color: #B8D8F3;
}

.screenshot-trigger {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.screenshot-canvas {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 85% 12%, rgba(33, 150, 243, .15), transparent 30%),
    linear-gradient(160deg, #F8FBFF 0%, var(--md-primary-container) 100%);
  overflow: hidden;
}

.screenshot-canvas::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(33, 150, 243, .16);
  border-radius: 22px;
  pointer-events: none;
}

.screenshot-canvas img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  transition: transform .25s ease;
  filter: drop-shadow(0 16px 20px rgba(24, 81, 124, .14));
}

.screenshot-card:hover .screenshot-canvas img {
  transform: scale(1.025);
}

.screenshot-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.screenshot-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.screenshot-card p {
  margin: 10px 0 0;
  color: var(--md-on-surface-variant);
}

.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--md-primary-dark);
  font-size: .9rem;
  font-weight: 750;
}

.inline-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.security-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 118px;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--md-primary-container);
  color: var(--md-on-primary-container);
}

.security-item__icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--md-shadow-1);
}

.security-item__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--md-primary-dark);
}

.security-item__copy {
  min-width: 0;
  padding-top: 1px;
}

.security-item__title {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 750;
}

.security-item__description {
  display: block;
  margin-top: 4px;
  font-size: .88rem;
  line-height: 1.55;
  opacity: .78;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding-block: 104px;
  background: #0E2438;
  color: #fff;
}

.download-section::before {
  content: none;
  display: none;
}

.download-panel {
  position: relative;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(33, 150, 243, .16), rgba(255, 255, 255, .04));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.download-panel__heading {
  max-width: 720px;
}

.download-panel__heading .kicker {
  margin: 0 0 10px;
  color: #90CAF9;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .86rem;
}

.download-panel__heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.download-panel__heading p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  transition: transform .2s ease, background .2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .11);
}

.download-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.download-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .68);
}

.download-card > div {
  flex: 1 1 auto;
  min-width: 0;
}

.download-card > a {
  display: block;
  flex: 0 0 200px;
  width: 200px;
  min-width: 200px;
  border-radius: 14px;
  transition: transform .18s ease;
}

.download-card > a:hover {
  transform: scale(1.025);
}

.download-card > a img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.download-group-title {
  display: block;
  width: 100%;
  margin: 32px 0 0;
  color: #90CAF9;
  text-align: left;
  box-sizing: border-box;
}

.extension-guide-link {
  display: inline-block;
  margin-top: 7px;
  color: #BBDEFB;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Le estensioni restano volutamente meno evidenti di Android e Web App. */
.download-options--extensions {
  max-width: 780px;
  margin: 18px auto 0;
  grid-template-columns: repeat(2, minmax(0, 350px));
  justify-content: center;
  gap: 14px;
}

.download-options--extensions .download-card {
  min-height: 124px;
  padding: 16px 18px;
  gap: 14px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

.download-options--extensions .download-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .085);
}

.download-options--extensions .download-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.download-options--extensions .download-card p {
  margin-top: 4px;
  font-size: .83rem;
  line-height: 1.4;
}

.download-options--extensions .extension-guide-link {
  margin-top: 4px;
  font-size: .76rem;
}

.download-options--extensions .download-card > a {
  flex: 0 0 132px;
  width: 132px;
  min-width: 132px;
}

.download-options--extensions .download-card > a img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.site-footer {
  padding-block: 36px;
  background: #091826;
  color: rgba(255, 255, 255, .68);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.fab-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--md-primary);
  color: #fff;
  box-shadow: var(--md-shadow-3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top:hover {
  background: var(--md-primary-dark);
}

.fab-top svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.screenshot-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--md-surface);
  color: var(--md-on-surface);
  box-shadow: 0 30px 100px rgba(3, 25, 45, .38);
  overflow: hidden;
}

.screenshot-dialog::backdrop {
  background: rgba(3, 20, 36, .68);
  backdrop-filter: blur(8px);
}

.dialog-toolbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 24px;
  border-bottom: 1px solid var(--md-outline);
}

.dialog-toolbar strong {
  font-size: 1.05rem;
}

.dialog-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--md-on-surface);
  cursor: pointer;
}

.dialog-close:hover {
  background: var(--md-surface-variant);
}

.dialog-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.dialog-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  max-height: calc(100dvh - 98px);
  overflow: auto;
}

.dialog-image-wrap {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(150deg, #F7FBFF, var(--md-primary-container));
}

.dialog-image-wrap img {
  width: 100%;
  max-height: 72dvh;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(24, 81, 124, .18));
}

.dialog-copy {
  align-self: center;
  padding: 34px;
}

.dialog-copy h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.dialog-copy p {
  margin: 14px 0 0;
  color: var(--md-on-surface-variant);
}

@media (max-width: 1024px) {
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding-block: 70px 78px;
  }

  .screenshot-card {
    grid-column: span 6;
  }

  .screenshot-card:nth-child(5) {
    grid-column: 4 / span 6;
  }

  .security-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 88px 0 auto 0;
    max-height: calc(100dvh - 88px);
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 16px 24px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--md-outline);
    box-shadow: var(--md-shadow-2);
  }

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

  .main-nav a,
  .language-menu summary {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .language-menu__popover {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    background: var(--md-surface-soft);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy,
  .hero h1 {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__metrics {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .hero-device-card {
    width: min(82vw, 470px);
    transform: none;
    margin-inline: auto;
  }

  .download-options {
    grid-template-columns: 1fr;
  }

  .download-options--extensions {
    max-width: 440px;
    grid-template-columns: 1fr;
  }

  .dialog-content {
    grid-template-columns: 1fr;
  }

  .dialog-image-wrap {
    min-height: 360px;
  }

  .dialog-copy {
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 22px), var(--content));
  }

  .app-bar__inner {
    min-height: 76px;
  }

  .brand > img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .main-nav {
    inset: 76px 0 auto 0;
    max-height: calc(100dvh - 76px);
  }

  .hero__inner {
    padding-block: 48px 58px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.6rem);
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .hero-device-card {
    width: min(92vw, 430px);
    padding: 0;
    border-radius: 0;
    margin-inline: auto;
  }

  .hero__actions {
    flex-direction: column;
  }

  .md-button {
    width: 100%;
  }

  .section,
  .download-section {
    padding-block: 76px;
  }

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

  .screenshot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    overflow: visible;
    padding: 0;
  }

  .screenshot-card,
  .screenshot-card:nth-child(4),
  .screenshot-card:nth-child(5) {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .screenshot-canvas {
    min-height: 330px;
    padding: 22px;
  }

  .download-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-card > a {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 260px;
  }

  .download-options--extensions .download-card {
    min-height: 0;
    padding: 15px 16px;
  }

  .download-options--extensions .download-card > a {
    width: 128px;
    max-width: 128px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fab-top {
    right: 14px;
    bottom: 14px;
  }

  .dialog-toolbar {
    padding-left: 18px;
  }

  .dialog-image-wrap {
    min-height: 300px;
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
