:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --canvas: #eef1f5;
  --surface: #ffffff;
  --surface-strong: #eeeaff;
  --text: #151922;
  --muted: #5c6575;
  --line: #d5dae2;
  --accent: #5636d9;
  --accent-strong: #4325b8;
  --accent-ink: #ffffff;
  --cyan: #5636d9;
  --success: #087a52;
  --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 12px 32px rgba(15, 23, 42, .08);
  --radius: 10px;
  --header: rgba(244, 246, 248, .94);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101216;
  --canvas: #1d2129;
  --surface: #171a20;
  --surface-strong: #292343;
  --text: #f2f4f8;
  --muted: #a8b0bf;
  --line: #303640;
  --accent: #9a83ff;
  --accent-strong: #b4a3ff;
  --accent-ink: #111016;
  --cyan: #9a83ff;
  --success: #55cf99;
  --shadow: 0 25px 70px rgba(0, 0, 0, .4);
  --header: rgba(16, 18, 22, .94);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="system"] {
    color-scheme: dark;
    --bg: #101216;
    --canvas: #1d2129;
    --surface: #171a20;
    --surface-strong: #292343;
    --text: #f2f4f8;
    --muted: #a8b0bf;
    --line: #303640;
    --accent: #9a83ff;
    --accent-strong: #b4a3ff;
    --accent-ink: #111016;
    --cyan: #9a83ff;
    --success: #55cf99;
    --shadow: 0 25px 70px rgba(0, 0, 0, .4);
    --header: rgba(16, 18, 22, .94);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}
[hidden] { display: none !important; }
body.panel-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 3px;
}
.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: 50;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: var(--header);
  backdrop-filter: blur(18px);
}
.site-brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 760; letter-spacing: -.02em; }
.site-brand img { width: 34px; height: 34px; }
.site-header > nav { display: flex; justify-content: center; align-items: center; gap: 28px; }
.site-header > nav a, .site-header > nav button, .text-button { min-height: 36px; display: inline-flex; align-items: center; color: var(--muted); font-size: 14px; font-weight: 650; }
.site-header > nav button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.site-header > nav a:hover, .site-header > nav a.is-active, .site-header > nav button:hover, .text-button:hover { color: var(--text); }
.site-header > nav a.is-active { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 7px; }
.mobile-account-actions { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.mobile-nav-button { display: none; }
.mobile-nav-button > span[aria-hidden] { width: 17px; height: 12px; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.primary-button, .secondary-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.primary-button { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 24%, transparent); }
.primary-button:hover { background: var(--accent-strong); transform: translateY(-1px); }
.secondary-button { background: var(--surface); color: var(--text); border-color: var(--line); }
.secondary-button:hover { background: var(--surface-strong); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); transform: translateY(-1px); }
.large { min-height: 50px; padding-inline: 24px; font-size: 15px; }

.app-launcher {
  position: fixed;
  z-index: 72;
  top: 0;
  right: 0;
  width: min(430px, calc(100vw - 32px));
  height: 100dvh;
  overflow: auto;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.more-panel-header { position: sticky; top: 0; z-index: 2; min-height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 22px; border-bottom: 1px solid var(--line); background: var(--surface); }
.more-panel-header strong { grid-column: 2; font-size: 16px; }
.back-button { justify-self: start; min-height: 40px; display: inline-flex; align-items: center; gap: 8px; padding: 0 10px; border: 0; border-radius: 9px; background: transparent; color: var(--text); font-weight: 700; cursor: pointer; }
.back-button:hover { background: var(--surface-strong); }
.more-panel-body { padding: 26px 24px 36px; }
.more-panel-body section + section { margin-top: 30px; }
.more-panel-body h2 { margin: 0 0 12px; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.launcher-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.launcher-grid a { min-height: 72px; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 12px; padding: 12px; border: 1px solid transparent; border-radius: 12px; color: var(--text); font-size: 13px; }
.launcher-grid a:hover { border-color: var(--line); background: var(--surface-strong); }
.launcher-grid span { width: 30px; height: 30px; border: 2px solid var(--accent); border-radius: 9px; box-shadow: inset 0 0 0 6px color-mix(in srgb, var(--accent) 12%, transparent); }
.launcher-links { display: grid; gap: 2px; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); }
.launcher-links a { min-height: 42px; display: flex; align-items: center; padding: 0 12px; border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 650; }
.launcher-links a:hover { background: var(--surface-strong); color: var(--text); }
.panel-scrim { position: fixed; z-index: 70; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(3, 7, 18, .54); cursor: default; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: 90px clamp(24px, 7vw, 110px) 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 35%, color-mix(in srgb, var(--cyan) 15%, transparent), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--canvas));
}
.hero-copy { max-width: 670px; }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 790;
}
.hero-copy > p { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 1.5vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; color: var(--muted); font-size: 12px; font-weight: 650; }
.hero-proof span::before { content: "✓"; margin-right: 7px; color: var(--success); }
.hero-product { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #101216; box-shadow: var(--shadow); }
.hero-product::before { content: none; }
.hero-product img { display: block; width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: cover; }
.product-window { position: relative; overflow: hidden; border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line)); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }
.product-window > header { height: 52px; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.product-window > header span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.product-window > header span:first-child { background: #f05b6b; }
.product-window > header span:nth-child(2) { background: #f2b84b; }
.product-window > header span:nth-child(3) { background: #22bd79; }
.product-window > header strong { margin-left: auto; margin-right: auto; }
.workflow { padding: 24px; }
.workflow article { display: flex; align-items: center; gap: 15px; min-height: 78px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: color-mix(in srgb, var(--surface) 88%, var(--canvas)); }
.workflow article b { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: color-mix(in srgb, var(--accent) 13%, transparent); color: var(--accent); }
.workflow article span { display: grid; gap: 3px; }
.workflow article small { color: var(--muted); }
.workflow i { display: block; width: 1px; height: 18px; margin-left: 33px; background: var(--line); }
.product-window > footer { display: flex; align-items: center; gap: 9px; padding: 14px 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 14%, transparent); }

.section-heading { max-width: 760px; }
.section-heading h2, .connected-section h2, .support-cta h2, .page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 66px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.section-heading p, .connected-section > div > p, .support-cta p, .page-hero p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.product-launch, .pricing-section, .connected-section, .support-cta, .page-shell { padding: 110px clamp(24px, 7vw, 110px); }
.product-launch { background: var(--bg); }
.product-list { margin-top: 55px; border-top: 1px solid var(--line); }
.product-list a { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 20px; padding: 28px 6px; border-bottom: 1px solid var(--line); }
.product-list a > span { color: var(--accent); font-size: 13px; font-weight: 750; }
.product-list h3 { margin: 0 0 4px; font-size: 24px; letter-spacing: -.03em; }
.product-list p { margin: 0; color: var(--muted); }
.product-list b { font-size: 24px; color: var(--muted); transition: transform .18s ease; }
.product-list a:hover b { color: var(--accent); transform: translateX(5px); }
.connected-section { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 9vw, 140px); background: var(--canvas); }
.connected-section .secondary-button { margin-top: 30px; }
.terminal-preview { overflow: hidden; border: 1px solid #1e3350; border-radius: 18px; background: #071120; color: #dce9ff; box-shadow: 0 24px 70px rgba(0, 0, 0, .28); }
.terminal-preview header { display: flex; justify-content: space-between; padding: 14px 19px; border-bottom: 1px solid #1e3350; color: #9cb0d0; font: 12px ui-monospace, monospace; }
.terminal-preview header b { color: #35da93; }
.terminal-preview pre { min-height: 300px; margin: 0; padding: 28px; overflow: auto; font: 14px/1.75 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; }
.terminal-preview pre > span { color: #3bd7f4; }
.terminal-preview pre .ok { color: #35da93; }

.pricing-section { background: var(--bg); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.plan-card { display: flex; flex-direction: column; min-height: 490px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.plan-card.is-featured { border-color: color-mix(in srgb, var(--accent) 60%, var(--line)); box-shadow: 0 22px 60px color-mix(in srgb, var(--accent) 13%, transparent); }
.plan-card > div { display: flex; justify-content: space-between; align-items: center; }
.plan-card h3 { margin: 0; font-size: 25px; }
.plan-card > div span { padding: 5px 9px; border-radius: 8px; background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); font-size: 11px; font-weight: 750; }
.plan-card > p { margin: 27px 0 0; }
.plan-card > p strong { font-size: 43px; line-height: 1; letter-spacing: -.05em; }
.plan-card > p small, .plan-card > em { color: var(--muted); font-size: 13px; font-style: normal; }
.plan-card ul { flex: 1; margin: 30px 0; padding: 0; list-style: none; }
.plan-card li { padding: 9px 0; color: var(--muted); }
.plan-card li::before { content: "✓"; margin-right: 9px; color: var(--success); }
.storage-note { max-width: 760px; margin: 28px auto 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-strong); color: var(--muted); text-align: center; }
.support-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--canvas); }
.support-cta > div { max-width: 780px; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; padding: 45px clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.site-footer > div { display: flex; align-items: center; gap: 10px; }
.site-footer img { width: 28px; }
.site-footer strong { color: var(--text); }
.site-footer nav { display: flex; gap: 24px; }
.site-footer nav a { min-height: 28px; display: inline-flex; align-items: center; }
.site-footer small { grid-column: 1 / -1; }

.page-shell { min-height: 72vh; background: linear-gradient(180deg, var(--canvas), var(--bg) 340px); }
.page-hero { max-width: 900px; padding: 50px 0 65px; }
.pricing-section.standalone { padding: 0; background: transparent; }
.support-form { max-width: 820px; display: grid; gap: 25px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.support-success { max-width: 820px; display: grid; gap: 3px; margin-bottom: 18px; padding: 18px 20px; border: 1px solid color-mix(in srgb, var(--success) 45%, var(--line)); border-radius: 13px; background: color-mix(in srgb, var(--success) 9%, var(--surface)); color: var(--text); }
.support-success strong { color: var(--success); }
.support-success span { color: var(--muted); font-size: 14px; }
.support-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; pointer-events: none !important; }
.support-form label, .device-form label { display: grid; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: var(--bg); color: var(--text); padding: 13px 14px; }
textarea { resize: vertical; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { margin-bottom: 12px; font-weight: 750; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span { padding: 12px; border: 1px solid var(--line); border-radius: 10px; text-align: center; }
.choice-grid input:checked + span { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent); }
.device-form { max-width: 600px; display: grid; gap: 18px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.device-form input { font: 700 25px/1.2 ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; }
.device-form p { margin: 0; color: var(--muted); font-size: 13px; }
.device-form .device-form-error { padding: 11px 13px; border: 1px solid color-mix(in srgb, var(--danger) 35%, var(--line)); border-radius: 9px; color: var(--danger); background: color-mix(in srgb, var(--danger) 8%, var(--surface)); font-weight: 700; }
.device-form input[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 15%, transparent); }
.download-list { display: grid; gap: 10px; }
.download-recommendation { max-width: 980px; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 24px; padding: 24px; border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line)); border-radius: var(--radius); background: var(--surface-strong); }
.download-recommendation > div { min-width: 0; }
.download-recommendation h2 { margin: 0 0 5px; font-size: 22px; }
.download-recommendation p { max-width: 700px; margin: 0 0 14px; color: var(--muted); }
.download-recommendation pre { max-width: 100%; overflow-x: auto; white-space: pre-wrap; overflow-wrap: anywhere; }
.download-recommendation code { display: block; overflow-wrap: anywhere; color: var(--text); font: 13px/1.6 ui-monospace, SFMono-Regular, Consolas, monospace; }
.download-recommendation .primary-button { flex: 0 0 auto; }
.download-filters { display: grid; grid-template-columns: minmax(170px, 230px) minmax(170px, 230px) 1fr; align-items: end; gap: 12px; margin-bottom: 20px; }
.download-filters label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 700; }
.download-filters select { width: 100%; min-height: 44px; padding: 0 36px 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text); font-size: 14px; font-weight: 650; }
.download-filters [data-download-count] { justify-self: end; padding-bottom: 11px; color: var(--muted); font-size: 13px; }
.download-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 23px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.download-row span { display: grid; gap: 4px; }
.download-row small { color: var(--muted); }
.download-row b { color: var(--accent); }
.download-empty { padding: 28px; border: 1px dashed var(--line); border-radius: 13px; color: var(--muted); text-align: center; }
.removed-product { max-width: 760px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.removed-product h2 { margin-top: 0; }
.removed-product p { color: var(--muted); }
.removed-product > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.empty-state, .systems-empty, .system-shell { padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-align: center; }
.release-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.release-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.release-grid h2 { margin-top: 0; }
.release-grid p { color: var(--muted); }
.systems-empty pre { display: inline-block; margin: 20px auto 30px; padding: 20px 26px; border-radius: 13px; background: #071120; color: #dce9ff; text-align: left; }
.system-orbit { width: 70px; height: 70px; margin: 0 auto 22px; border: 2px solid var(--accent); border-radius: 20px; box-shadow: inset 0 0 0 12px color-mix(in srgb, var(--accent) 12%, transparent); }
.system-loading span { display: block; width: 42px; height: 42px; margin: 0 auto 20px; border: 3px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
.system-metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 12px; margin-top: 28px; text-align: left; }
.system-metric-grid article { display: grid; gap: 8px; min-height: 105px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--canvas); }
.system-metric-grid small { color: var(--muted); font-weight: 700; }
.system-metric-grid strong { align-self: end; overflow-wrap: anywhere; font-size: 18px; text-transform: capitalize; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 14px; }
  .mobile-nav-button { display: grid; justify-self: end; }
  .site-header > nav { position: fixed; z-index: 68; top: 72px; left: 16px; right: 16px; display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
  .site-header > nav[data-open] { display: flex; }
  .site-header > nav a, .site-header > nav button { min-height: 44px; justify-content: flex-start; padding: 0 12px; border-radius: 9px; }
  .site-header > nav a:hover, .site-header > nav button:hover { background: var(--surface-strong); }
  .site-header > nav a.is-active { text-decoration: none; background: var(--surface-strong); color: var(--text); }
  .mobile-account-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
  .site-header > nav .mobile-account-actions a { justify-content: center; border: 1px solid var(--line); color: var(--text); }
  .site-header > nav .mobile-account-actions .mobile-create { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
  .header-actions { justify-self: end; }
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { max-width: 780px; }
  .hero-product { max-width: 760px; }
  .connected-section { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
}

@media (max-width: 700px) {
  .site-header { height: 64px; padding-inline: 16px; }
  .site-header > nav { top: 64px; }
  .site-brand span, .header-actions .text-button, .header-actions > .primary-button { display: none; }
  .app-launcher { width: 100%; }
  .more-panel-header { min-height: 64px; }
  .hero, .product-launch, .pricing-section, .connected-section, .support-cta, .page-shell { padding: 70px 20px; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); }
  .hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-proof { display: grid; }
  .workflow { padding: 15px; }
  .workflow article { min-height: 70px; }
  .product-list a { grid-template-columns: 35px 1fr auto; gap: 12px; }
  .product-list p { font-size: 14px; }
  .support-cta { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div { align-items: flex-start; flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
  .field-row, .choice-grid, .release-grid { grid-template-columns: 1fr; }
  .support-form, .device-form, .empty-state, .systems-empty, .system-shell { padding: 24px; }
  .download-recommendation { align-items: flex-start; flex-direction: column; }
  .download-filters { grid-template-columns: 1fr; }
  .download-filters [data-download-count] { justify-self: start; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
