:root{
  --bg: #0b0d12;
  --header-bg: rgba(11,13,18,.85);
  --header-bg2: rgba(11,13,18,.55);
  --footer-bg: rgba(0,0,0,.12);
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.9);
  --muted: rgba(255,255,255,.68);
  --faint: rgba(255,255,255,.12);
  --brand: #7c5cff;
  --brand2: #39d3ff;
  --ok: #34d399;
  --warn: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 24px;
  --maxw: 1100px;
  --pad: 22px;
  --pad2: 34px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  --logo-image: url("images/iconmedium_1024x1024.png");
}

html[data-theme="light"]{
  --bg: #f7f8fb;
  --header-bg: rgba(247,248,251,.85);
  --header-bg2: rgba(247,248,251,.55);
  --footer-bg: rgba(0,0,0,.03);
  --panel: rgba(0,0,0,.04);
  --panel2: rgba(0,0,0,.06);
  --text: rgba(0,0,0,.88);
  --muted: rgba(0,0,0,.62);
  --faint: rgba(0,0,0,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --logo-image: url("images/icon-light.png");
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1 0 auto;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus{ left: 12px; }

.wrap{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, var(--header-bg), var(--header-bg2));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

html[data-theme="light"] .site-header{
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: .2px;
  white-space: nowrap;
}
.logo{
  width: 38px;
  height: 38px;
  background: var(--logo-image) center / contain no-repeat;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a{
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

html[data-theme="light"] .nav-links a:hover{
  background: rgba(0,0,0,.04);
}
.menu-toggle{
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
html[data-theme="light"] .menu-toggle{
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.03);
}
.menu-toggle__icon{
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: background .2s ease;
}
.menu-toggle__icon::before,
.menu-toggle__icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle__icon::before{ top: -6px; }
.menu-toggle__icon::after{ top: 6px; }
.nav.nav--open .menu-toggle__icon{
  background: transparent;
}
.nav.nav--open .menu-toggle__icon::before{
  transform: translateY(6px) rotate(45deg);
}
.nav.nav--open .menu-toggle__icon::after{
  transform: translateY(-6px) rotate(-45deg);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  box-shadow: none;
  cursor: pointer;
}
.btn:hover{
  background: rgba(255,255,255,.09);
  text-decoration: none;
}

html[data-theme="light"] .btn{
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.04);
}
html[data-theme="light"] .btn:hover{
  background: rgba(0,0,0,.06);
}
.btn--primary{
  border: 1px solid rgba(124,92,255,.45);
  background: linear-gradient(135deg, rgba(124,92,255,.92), rgba(57,211,255,.72));
  box-shadow: 0 14px 28px rgba(124,92,255,.18);
  color: #0b0d12;
}
.btn--primary:hover{
  filter: brightness(1.03);
}

html[data-theme="light"] .btn--primary{
  color: #0b0d12;
}
.btn__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(11,13,18,.75);
}
.btn--with-banner{
  position: relative;
  overflow: hidden;
}
.btn__banner{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  width: 135%;
  padding: 2px 0;
  border-radius: 0;
  background: #d91f26;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 14px rgba(0,0,0,.25);
}

.app-section{
  padding: 54px 0;
}
.app-section__title{
  font-size: 22px;
  margin: 0 0 18px 0;
  letter-spacing: .2px;
}
.app-section__title--privacy{
  font-size: clamp(28px, 4vw, 34px);
  letter-spacing: -0.3px;
}
.app-section__lede{
  margin: 0 0 26px 0;
  color: var(--muted);
  max-width: 68ch;
  font-size: 16px;
}

.hero{
  padding: 62px 0 22px 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero-card{
  background: linear-gradient(to bottom right, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: clamp(18px, 3.2vw, 34px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content: "";
  position: absolute;
  inset: -30% -20% auto -30%;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(57,211,255,.22), transparent 60%);
  transform: rotate(-10deg);
  pointer-events: none;
}
.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.hero-kicker__pill{
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(124,92,255,.22);
  border: 1px solid rgba(124,92,255,.3);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  letter-spacing: .2px;
}
html[data-theme="light"] .hero-kicker__pill{
  background: rgba(124,92,255,.18);
  border: 1px solid rgba(124,92,255,.35);
  color: rgba(38,28,92,.90);
}
.hero-title{
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.08;
}
.hero-subtitle{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 66ch;
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.meta-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  white-space: nowrap;
}
.meta-chip__dot{
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.25);
}

.demo{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.demo-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.traffic{
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.traffic span{
  width: 11px; height: 11px; border-radius: 99px;
  background: rgba(255,255,255,.20);
}
.demo-title{
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-body{
  display: grid;
  gap: 10px;
}
.mail-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  align-items: center;
}
.mail-row strong{
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.mail-row small{
  display: block;
  color: var(--muted);
  font-size: 12px;
  max-width: 55ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  white-space: nowrap;
}
.tag__dot{
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.35);
}
.tag--ok{ border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.08); }
.tag--ok .tag__dot{ background: var(--ok); }
.tag--warn{ border-color: rgba(251,191,36,.35); background: rgba(251,191,36,.10); }
.tag--warn .tag__dot{ background: var(--warn); }
.tag--danger{ border-color: rgba(251,113,133,.35); background: rgba(251,113,133,.10); }
.tag--danger .tag__dot{ background: var(--danger); }

.app-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .app-grid{ grid-template-columns: 1fr; }
}
.app-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: var(--pad);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

html[data-theme="light"] .app-card{
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.app-card h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: .1px;
}
.app-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.highlights{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px){
  .highlights{ grid-template-columns: 1fr; }
}
.callout{
  border-radius: var(--radius2);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(124,92,255,.16), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.callout--alt{
  background: linear-gradient(135deg, rgba(57,211,255,.14), rgba(255,255,255,.04));
}

html[data-theme="light"] .callout{
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, rgba(124,92,255,.10), rgba(0,0,0,.01));
}
html[data-theme="light"] .callout--alt{
  background: linear-gradient(135deg, rgba(57,211,255,.10), rgba(0,0,0,.01));
}
html[data-theme="light"] .setup-shot{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
}
html[data-theme="light"] .setup-shot img{
  border: 1px solid rgba(0,0,0,.10);
}
.callout h3{ margin: 0 0 8px 0; font-size: 16px; }
.callout p{ margin: 0; color: var(--muted); font-size: 14px; }
.setup-mini{
  margin: 18px 0 22px 0;
}
.setup-note{
  margin-top: 10px;
}
.setup-gallery{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.setup-shot{
  margin: 0;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.setup-shot img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
}
.setup-shot figcaption{
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.list{
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
}
.tick{
  width: 18px; height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  line-height: 1;
}

.faq{
  display: grid;
  gap: 10px;
}

.faq details > summary{
  display: block;
  list-style: none;
  padding-right: 26px;
  position: relative;
}
.faq details > summary::-webkit-details-marker{ display: none; }
.faq details > summary::marker{ content: ""; }
.faq details > summary::after{
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  opacity: .75;
}
.faq details[open] > summary::after{
  transform: translateY(-40%) rotate(225deg);
}

details{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 14px 16px;
}

html[data-theme="light"] details{
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.10);
}
summary{
  cursor: pointer;
  font-weight: 650;
  color: var(--text);
}
details p{
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.download{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 900px){
  .download{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .setup-gallery{ grid-template-columns: 1fr; }
}
.download-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow);
}

html[data-theme="light"] .download-card{
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.10);
}
.download-card h3{ margin: 0 0 10px 0; font-size: 16px; }
.download-card p{ margin: 0 0 14px 0; color: var(--muted); font-size: 14px; }
.download-banner{
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  margin: 0 0 12px 0;
  border-radius: 999px;
  background: #d91f26;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.specs{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.specs li{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  padding-bottom: 8px;
}
.specs b{ color: rgba(255,255,255,.85); font-weight: 650; }

html[data-theme="light"] .specs li{
  border-bottom: 1px dashed rgba(0,0,0,.14);
}
html[data-theme="light"] .specs b{ color: rgba(0,0,0,.78); }

footer{
  padding: 34px 0 50px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--footer-bg);
  flex-shrink: 0;
}

html[data-theme="light"] footer{
  border-top: 1px solid rgba(0,0,0,.08);
}
.footer-grid{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.kbd{
  font-family: var(--mono);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
}
.kbd--spaced{
  margin-left: 10px;
}

html[data-theme="light"] .kbd{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.70);
}

.card-title{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card-ico{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
}
.card-ico svg{ width: 18px; height: 18px; display: block; }
html[data-theme="light"] .card-ico{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.72);
}

.theme-toggle{
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
}
.theme-toggle:hover{ color: var(--text); }
.theme-toggle:focus{ outline: none; }
.theme-toggle:focus-visible{
  outline: 2px solid rgba(124,92,255,.55);
  outline-offset: 3px;
  border-radius: 999px;
}
.theme-icon{ width: 20px; height: 20px; display: block; }
html[data-theme="dark"] .theme-icon--moon{ display: none; }
html[data-theme="light"] .theme-icon--sun{ display: none; }

.muted{ color: var(--muted); }
.tip{
  margin-top: 12px;
  font-size: 12px;
}

.media{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.media-card{
  margin: 0;
  padding: 12px;
}
.media-card img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.media-caption{
  margin: 10px 6px 0 6px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px){
  .wrap{
    padding: 0 14px;
  }
  .nav{
    position: relative;
    gap: 10px;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  .brand{
    font-size: 15px;
  }
  .logo{
    width: 34px;
    height: 34px;
  }
  .menu-toggle{
    display: none;
  }
  .nav.nav--mobile-ready .menu-toggle{
    display: inline-flex;
    margin-left: auto;
  }
  .nav-links{
    width: 100%;
    justify-content: flex-start;
    gap: 8px 10px;
  }
  .nav.nav--mobile-ready .nav-links{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,13,18,.94);
    box-shadow: 0 16px 32px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 60;
  }
  html[data-theme="light"] .nav.nav--mobile-ready .nav-links{
    background: rgba(247,248,251,.98);
    border: 1px solid rgba(0,0,0,.14);
    box-shadow: 0 14px 28px rgba(0,0,0,.14);
  }
  .nav.nav--mobile-ready.nav--open .nav-links{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav.nav--mobile-ready .nav-links a,
  .nav.nav--mobile-ready .nav-links .btn{
    width: 100%;
    justify-content: center;
  }
  .nav.nav--mobile-ready .theme-toggle{
    width: 100%;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
  }
  html[data-theme="light"] .nav.nav--mobile-ready .theme-toggle{
    border: 1px solid rgba(0,0,0,.14);
    background: rgba(0,0,0,.03);
  }

  .hero{
    padding: 24px 0 8px 0;
  }
  .hero-grid{
    gap: 14px;
  }
  .hero-card{
    border-radius: 20px;
    padding: 20px;
  }
  .hero-kicker{
    width: 100%;
    border-radius: 14px;
    flex-wrap: wrap;
  }
  .hero-title{
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.12;
  }
  .hero-subtitle{
    font-size: 15px;
    margin-bottom: 16px;
  }
  .hero-cta{
    gap: 10px;
  }
  .hero-cta .btn{
    width: 100%;
  }
  .hero-meta{
    gap: 8px;
    margin-top: 14px;
  }
  .meta-chip{
    width: 100%;
    justify-content: flex-start;
  }

  .app-section{
    padding: 40px 0;
  }
  .app-section__title{
    margin-bottom: 14px;
  }
  .app-section__lede{
    margin-bottom: 20px;
    font-size: 15px;
  }
  .app-grid{
    gap: 12px;
  }
  .app-card{
    padding: 18px;
  }

  .callout{
    border-radius: 20px;
    padding: 18px;
  }
  .download-card{
    border-radius: 20px;
    padding: 18px;
  }
  .specs li{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 10px;
  }

  details{
    padding: 13px 14px;
  }
  .faq details > summary{
    padding-right: 24px;
  }

  .footer-grid{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-links{
    width: 100%;
    gap: 10px;
  }
  .footer-links a{
    padding: 4px 0;
  }
  .kbd--spaced{
    display: inline-block;
    margin-left: 0;
    margin-top: 8px;
  }
}
